aboutsummaryrefslogtreecommitdiff
path: root/src/gensvm_matrix.c
diff options
context:
space:
mode:
authorGertjan van den Burg <burg@ese.eur.nl>2014-08-25 14:38:03 +0200
committerGertjan van den Burg <burg@ese.eur.nl>2014-08-25 14:38:03 +0200
commit1e340d509f229120eb3aaa98c91028dc3c0d3305 (patch)
treedd6b65c428447f179133e967eb0e0d3ce15f68ec /src/gensvm_matrix.c
parentfree some work arrays (diff)
downloadgensvm-1e340d509f229120eb3aaa98c91028dc3c0d3305.tar.gz
gensvm-1e340d509f229120eb3aaa98c91028dc3c0d3305.zip
rename msvmmaj to gensvm
Diffstat (limited to 'src/gensvm_matrix.c')
-rw-r--r--src/gensvm_matrix.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/gensvm_matrix.c b/src/gensvm_matrix.c
new file mode 100644
index 0000000..43f284f
--- /dev/null
+++ b/src/gensvm_matrix.c
@@ -0,0 +1,38 @@
+/**
+ * @file gensvm_matrix.c
+ * @author Gertjan van den Burg
+ * @date August, 2013
+ * @brief Functions facilitating matrix access
+ *
+ * @details
+ * The functions contained in this file are used when
+ * accessing or writing to matrices. Seperate functions
+ * exist of adding and multiplying existing matrix
+ * elements, to ensure this is done in place.
+ *
+ */
+
+#include "gensvm_matrix.h"
+#include "util.h"
+
+/**
+ * @brief print a matrix
+ *
+ * @details
+ * Debug function to print a matrix
+ *
+ * @param[in] M matrix
+ * @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)
+{
+ long i, j;
+
+ for (i=0; i<rows; i++) {
+ for (j=0; j<cols; j++)
+ note("%+6.6f ", matrix_get(M, cols, i, j));
+ note("\n");
+ }
+ note("\n");
+}