diff options
| author | Gertjan van den Burg <burg@ese.eur.nl> | 2013-10-18 15:48:59 +0200 |
|---|---|---|
| committer | Gertjan van den Burg <burg@ese.eur.nl> | 2013-10-18 15:48:59 +0200 |
| commit | 6d064658f8ae7ca0f42fef6dcc7f896144e9637b (patch) | |
| tree | a41e8793f71f637b68f862220ae5566f4537073d /src/matrix.c | |
| parent | allow seeding of V and added documentation (diff) | |
| download | gensvm-6d064658f8ae7ca0f42fef6dcc7f896144e9637b.tar.gz gensvm-6d064658f8ae7ca0f42fef6dcc7f896144e9637b.zip | |
restart using git
Diffstat (limited to 'src/matrix.c')
| -rw-r--r-- | src/matrix.c | 7 |
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"); } |
