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

◆ print_matrix()

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: lapack.h:87
Here is the caller graph for this function: