From abd0e0824d21e784cbc0828ec91d237b1a62c340 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 15 May 2014 16:59:20 -0700 Subject: add functionality for counting SVs --- src/msvmmaj_matrix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/msvmmaj_matrix.c') diff --git a/src/msvmmaj_matrix.c b/src/msvmmaj_matrix.c index ffa0c21..ecb0efd 100644 --- a/src/msvmmaj_matrix.c +++ b/src/msvmmaj_matrix.c @@ -27,7 +27,7 @@ * @param[in] cols number of columns of M * @param[in] i row index of element to write to * @param[in] j column index of element to write to - * @param[out] val value to write to specified element of M + * @param[in] val value to write to specified element of M */ void matrix_set(double *M, long cols, long i, long j, double val) { @@ -44,7 +44,7 @@ void matrix_set(double *M, long cols, long i, long j, double val) * @param[in] cols number of columns of M * @param[in] i row index (starting from 0) * @param[in] j column index (starting from 0) - * @returns matrix element at (i, j) + * @return matrix element at (i, j) */ double matrix_get(double *M, long cols, long i, long j) { -- cgit v1.2.3