diff options
Diffstat (limited to 'src/matrixOperations/jmat/djmata.c')
-rw-r--r-- | src/matrixOperations/jmat/djmata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/matrixOperations/jmat/djmata.c b/src/matrixOperations/jmat/djmata.c index 084dfa13..6ccff61d 100644 --- a/src/matrixOperations/jmat/djmata.c +++ b/src/matrixOperations/jmat/djmata.c @@ -11,7 +11,7 @@ void djmata(double n, double m, double *out){ /* * i*mm*nn : advance to the good column * mm*(nn-(i+1)) : take the first element of the column to be 1, when j=0 - * j*(mm*nn+1) : advance to the next to be 1 + * j*(mm*nn+1) : advance to the next which must be 1 * */ out[i*mm*mm*nn+(mm*(nn-(i+1))+j*(mm*nn+1))]=1; } |