#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_colmajor.c.
{
double A[5][3] = {1,2,3,4,5,1,3,5,2,4,1,4,2,5,3};
double b[5][2] = {-10,12,14,16,18,-3,14,12,16,16};
m = 5;
n = 3;
nrhs = 2;
lda = 5;
ldb = 5;
printf( "\n" );
printf( "LAPACKE_dgels (col-major, high-level) Example Program Results\n" );
printf( "\n" );
exit( 0 );
}