aboutsummaryrefslogtreecommitdiff
path: root/src/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/matrix.c')
-rw-r--r--src/matrix.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/matrix.c b/src/matrix.c
index fc29ecf..8803e8b 100644
--- a/src/matrix.c
+++ b/src/matrix.c
@@ -13,6 +13,7 @@
*/
#include "matrix.h"
+#include "util.h"
/**
* @name matrix_set
@@ -68,9 +69,9 @@ void print_matrix(double *M, long rows, long cols)
for (i=0; i<rows; i++) {
for (j=0; j<cols; j++)
- info("%8.8f ", matrix_get(M, cols, i, j));
- info("\n");
+ note("%8.8f ", matrix_get(M, cols, i, j));
+ note("\n");
}
- info("\n");
+ note("\n");
}