gprc/include/linalg.h

11 lines
144 B
C

#include <gsl/gsl_matrix.h>
#ifndef LINALG_H
#define LINALG_H
int
linspace
( double start, double end, int length, gsl_matrix *out );
#endif