Mercurial > hg > octave-nkf
diff scripts/special-matrix/toeplitz.m @ 19176:1197f04eec09 stable
doc: minor typo fixes and copy-paste error.
* package.txi: Correct typos.
* toeplitz.m: Correct warning message which should refer to "diagonal"
rather than "anti-diagonal".
author | Colin Macdonald <cbm@m.fsf.org> |
---|---|
date | Tue, 15 Jul 2014 00:14:18 +0100 |
parents | d63878346099 |
children | 446c46af4b42 |
line wrap: on
line diff
--- a/scripts/special-matrix/toeplitz.m +++ b/scripts/special-matrix/toeplitz.m @@ -74,7 +74,7 @@ if (! (isvector (c) && isvector (r))) error ("toeplitz: C and R must be vectors"); elseif (r(1) != c(1)) - warning ("toeplitz: column wins anti-diagonal conflict"); + warning ("toeplitz: column wins diagonal conflict"); endif nr = length (c);