From 8ea095b25b5015400f934f18502fd97683d792ab Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Tue, 20 Sep 2016 16:34:48 +0200 Subject: Rename print_matrix to reflect namespace --- src/gensvm_debug.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/gensvm_debug.c b/src/gensvm_debug.c index d94711a..f4b4151 100644 --- a/src/gensvm_debug.c +++ b/src/gensvm_debug.c @@ -21,13 +21,16 @@ * @param[in] rows number of rows of M * @param[in] cols number of columns of M */ -void print_matrix(double *M, long rows, long cols) +void gensvm_print_matrix(double *M, long rows, long cols) { long i, j; for (i=0; i 0) + note(" "); + note("%+6.6f", matrix_get(M, cols, i, j)); + } note("\n"); } note("\n"); -- cgit v1.2.3