LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
void print_matrix_colmajor ( char *  desc,
lapack_int  m,
lapack_int  n,
double *  mat,
lapack_int  ldm 
)

Definition at line 17 of file lapacke_example_aux.c.

17  {
18  lapack_int i, j;
19  printf( "\n %s\n", desc );
20 
21  for( i = 0; i < m; i++ ) {
22  for( j = 0; j < n; j++ ) printf( " %6.2f", mat[i+j*ldm] );
23  printf( "\n" );
24  }
25 }
#define lapack_int
Definition: lapacke.h:47

Here is the caller graph for this function: