aboutsummaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils.h b/src/utils.h
index 1abd04b..47e283a 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -18,6 +18,7 @@
#include <stdlib.h>
#include <math.h>
+#include <gsl/gsl_matrix.h>
extern unsigned int biggest(signed int a, signed int b);
extern unsigned int smallest(signed int a, signed int b);
@@ -29,6 +30,7 @@ extern double lambda(double voltage);
extern double distance3d(double x1, double y1, double z1, double x2, double y2, double z2);
extern size_t skipspace(const char *s);
extern void chomp(char *s);
+extern void matrix_vector_show(const gsl_matrix *m, const gsl_vector *v);
#define rad2deg(a) ((a)*180/M_PI)
#define deg2rad(a) ((a)*M_PI/180)