LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
void print_vector ( char *  desc,
lapack_int  n,
lapack_int vec 
)

Definition at line 28 of file lapacke_example_aux.c.

28  {
29  lapack_int j;
30  printf( "\n %s\n", desc );
31  for( j = 0; j < n; j++ ) printf( " %6i", vec[j] );
32  printf( "\n" );
33 }
#define lapack_int
Definition: lapacke.h:47

Here is the caller graph for this function: