diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2014-05-16 12:22:15 -0700 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2014-05-16 12:22:15 -0700 |
| commit | 7e450da966dd6af241e47294801ef0d4e25b26e0 (patch) | |
| tree | cb887bbb026f5593a745425b9278603b29732813 /src/msvmmaj_matrix.c | |
| parent | free model in crossval (diff) | |
| parent | add functionality for counting SVs (diff) | |
| download | gensvm-7e450da966dd6af241e47294801ef0d4e25b26e0.tar.gz gensvm-7e450da966dd6af241e47294801ef0d4e25b26e0.zip | |
Merge branch 'master' of /home/gertjan/Dropbox/repositories/msvmmaj
Diffstat (limited to 'src/msvmmaj_matrix.c')
| -rw-r--r-- | src/msvmmaj_matrix.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |
