#include <stdio.h>
#include <lapacke.h>
#include "lapacke_example_aux.h"
Go to the source code of this file.
Functions/Subroutines |
int | main (int argc, const char *argv[]) |
Function/Subroutine Documentation
int main |
( |
int |
argc, |
|
|
const char * |
argv[] |
|
) |
| |
Definition at line 66 of file example_DGELS_rowmajor.c.
{
double A[5][3] = {1,1,1,2,3,4,3,5,2,4,2,5,5,4,3};
double b[5][2] = {-10,-3,12,14,14,12,16,16,18,16};
m = 5;
n = 3;
nrhs = 2;
lda = 3;
ldb = 2;
printf( "\n" );
printf( "LAPACKE_dgels (row-major, high-level) Example Program Results\n" );
printf( "\n" );
exit( 0 );
}