GenSVM
gensvm_debug.h
Go to the documentation of this file.
1 
30 #ifndef GENSVM_DEBUG_H
31 #define GENSVM_DEBUG_H
32 
33 #include "gensvm_print.h"
34 #include "gensvm_sparse.h"
35 
36 void gensvm_print_matrix(double *M, long rows, long cols);
37 void gensvm_print_sparse(struct GenSparse *A);
38 
39 #endif
void gensvm_print_sparse(struct GenSparse *A)
Print a sparse matrix.
Definition: gensvm_debug.c:66
Header file for gensvm_sparse.c.
void gensvm_print_matrix(double *M, long rows, long cols)
Print a dense matrix.
Definition: gensvm_debug.c:42
Header file for gensvm_print.c.
A structure to represent a sparse matrix in CSR format.
Definition: gensvm_sparse.h:55