LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
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: lapacke.h:47

Here is the caller graph for this function: