[go: up one dir, main page]

Menu

[r377]: / libpetey / gsl_util.h  Maximize  Restore  History

Download this file

20 lines (12 with data), 341 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#ifndef GSL_UTIL__H
#define GSL_UTIL__H
#include <stdio.h>
#include <stdio.h>
#include <gsl/gsl_matrix.h>
namespace libpetey {
//random debugging code...
void print_gsl_matrix(FILE *fs, gsl_matrix * mat);
void print_gsl_matrix_complex(FILE *fs, gsl_matrix_complex * mat);
gsl_matrix *random_gsl_matrix(int m, int n);
}
#endif