15 lines
156 B
C
15 lines
156 B
C
#include <gsl/gsl_matrix.h>
|
|
|
|
#ifndef MATIO_H
|
|
#define MATIO_H
|
|
|
|
void
|
|
print_matrix
|
|
( gsl_matrix *matrix );
|
|
|
|
void
|
|
print_flatten
|
|
( gsl_matrix *matrix );
|
|
|
|
#endif
|