#include <lapacke.h>
#include <stdio.h>
Go to the source code of this file.
|
void | print_matrix_rowmajor (char *desc, lapack_int m, lapack_int n, double *mat, lapack_int ldm) |
|
void | print_matrix_colmajor (char *desc, lapack_int m, lapack_int n, double *mat, lapack_int ldm) |
|
void | print_vector (char *desc, lapack_int n, lapack_int *vec) |
|
Definition at line 17 of file lapacke_example_aux.c.
19 printf(
"\n %s\n", desc );
21 for( i = 0; i < m; i++ ) {
22 for( j = 0; j < n; j++ ) printf(
" %6.2f", mat[i+j*ldm] );
Definition at line 5 of file lapacke_example_aux.c.
7 printf(
"\n %s\n", desc );
9 for( i = 0; i < m; i++ ) {
10 for( j = 0; j < n; j++ ) printf(
" %6.2f", mat[i*ldm+j] );
Definition at line 28 of file lapacke_example_aux.c.
30 printf(
"\n %s\n", desc );
31 for( j = 0; j < n; j++ ) printf(
" %6i", vec[j] );