changeset 10264:75971c4ae9ad octave-forge

control: fix typo bug
author paramaniac
date Wed, 16 May 2012 09:37:15 +0000
parents d6546c47bba5
children b3d2f782daad
files main/control/inst/@lti/mconnect.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/main/control/inst/@lti/mconnect.m	Wed May 16 09:02:41 2012 +0000
+++ b/main/control/inst/@lti/mconnect.m	Wed May 16 09:37:15 2012 +0000
@@ -73,7 +73,7 @@
   [mrows, mcols] = size (M);
 
   if (p != mcols || m != mrows)
-    error ("mconnect: second argument must be a (%dx&d) matrix", m, p);
+    error ("mconnect: second argument must be a (%dx%d) matrix", m, p);
   endif
 
   if (! is_real_matrix (M))