Mercurial > hg > octave-nkf
diff scripts/linear-algebra/duplication_matrix.m @ 11472:1740012184f9
Use uppercase for variable names in error() strings to match Info documentation. Only m-files done.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sun, 09 Jan 2011 21:33:04 -0800 |
parents | f0c3d3fc4903 |
children | fd0a3ac60b0e |
line wrap: on
line diff
--- a/scripts/linear-algebra/duplication_matrix.m +++ b/scripts/linear-algebra/duplication_matrix.m @@ -70,7 +70,7 @@ endif if (! (isscalar (n) && n == round (n) && n > 0)) - error ("duplication_matrix: n must be a positive integer"); + error ("duplication_matrix: N must be a positive integer"); endif d = zeros (n * n, n * (n + 1) / 2);