Revision: 10784
http://octave.svn.sourceforge.net/octave/?rev=10784&view=rev
Author: paramaniac
Date: 2012-07-29 21:51:22 +0000 (Sun, 29 Jul 2012)
Log Message:
-----------
control: fix copy-paste error in error message
Modified Paths:
--------------
trunk/octave-forge/main/control/inst/lsim.m
Modified: trunk/octave-forge/main/control/inst/lsim.m
===================================================================
--- trunk/octave-forge/main/control/inst/lsim.m 2012-07-29 13:17:39 UTC (rev 10783)
+++ trunk/octave-forge/main/control/inst/lsim.m 2012-07-29 21:51:22 UTC (rev 10784)
@@ -144,7 +144,7 @@
if (isempty (x0))
x0 = zeros (n, 1);
elseif (n != length (x0) || ! is_real_vector (x0))
- error ("initial: x0 must be a vector with %d elements", n);
+ error ("lsim: x0 must be a vector with %d elements", n);
endif
x = reshape (x0, [], 1); # make sure that x is a column vector
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|