aboutsummaryrefslogtreecommitdiff
path: root/src/matrix.c
diff options
context:
space:
mode:
authorGertjan van den Burg <burg@ese.eur.nl>2013-10-18 15:48:59 +0200
committerGertjan van den Burg <burg@ese.eur.nl>2013-10-18 15:48:59 +0200
commit6d064658f8ae7ca0f42fef6dcc7f896144e9637b (patch)
treea41e8793f71f637b68f862220ae5566f4537073d /src/matrix.c
parentallow seeding of V and added documentation (diff)
downloadgensvm-6d064658f8ae7ca0f42fef6dcc7f896144e9637b.tar.gz
gensvm-6d064658f8ae7ca0f42fef6dcc7f896144e9637b.zip
restart using git
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");
}