LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
void print_matrix ( char *  desc,
lapack_int  m,
lapack_int  n,
double *  a,
lapack_int  lda 
)

Definition at line 80 of file example_user.c.

80  {
81  lapack_int i, j;
82  printf( "\n %s\n", desc );
83  for( i = 0; i < m; i++ ) {
84  for( j = 0; j < n; j++ ) printf( " %6.2f", a[i*lda+j] );
85  printf( "\n" );
86  }
87 }
#define lapack_int
Definition: lapacke.h:47

Here is the caller graph for this function: