LAPACK 3.11.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ print_matrix_rowmajor()

void print_matrix_rowmajor ( char *  desc,
lapack_int  m,
lapack_int  n,
double *  mat,
lapack_int  ldm 
)

Definition at line 5 of file lapacke_example_aux.c.

5 {
6 lapack_int i, j;
7 printf( "\n %s\n", desc );
8
9 for( i = 0; i < m; i++ ) {
10 for( j = 0; j < n; j++ ) printf( " %6.2f", mat[i*ldm+j] );
11 printf( "\n" );
12 }
13}
#define lapack_int
Definition: lapack.h:87
Here is the caller graph for this function: