changeset 3814:fb01838d0f38

[project @ 2001-04-19 02:26:07 by jwe]
author jwe
date Thu, 19 Apr 2001 02:26:07 +0000
parents 8986086e3e0f
children c554ad71bafc
files scripts/ChangeLog scripts/control/system/is_stabilizable.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Thu Apr 19 02:21:41 2001 +0000
+++ b/scripts/ChangeLog	Thu Apr 19 02:26:07 2001 +0000
@@ -1,3 +1,7 @@
+2001-04-18  A. Scottedward Hodel <a.s.hodel@eng.auburn.edu>
+
+	* control/system/is_stabilizable.m: Pass a to sys2ss, not sys.
+
 2001-02-28  Kai Habel  <kai.habel@gmx.de>
 
     * general/cart2pol.m: New file.
--- a/scripts/control/system/is_stabilizable.m	Thu Apr 19 02:21:41 2001 +0000
+++ b/scripts/control/system/is_stabilizable.m	Thu Apr 19 02:26:07 2001 +0000
@@ -55,7 +55,7 @@
     elseif(nargin > 2)
       usage("[retval,U] = is_stabilizable(sys{,tol})");
     endif
-    [a,b] = sys2ss(sys);
+    [a,b] = sys2ss(a);
   else
     ## a,b arguments sent directly.
     if(nargin > 3)