comparison scripts/control/obsolete/unpacksys.m @ 7134:ff0b965b65bc

[project @ 2007-11-08 16:36:06 by jwe]
author jwe
date Thu, 08 Nov 2007 16:36:06 +0000
parents a1dbe9d80eee
children
comparison
equal deleted inserted replaced
7133:1d0d7be2d0f8 7134:ff0b965b65bc
23 ## Author: David Clem 23 ## Author: David Clem
24 ## Created: August 19, 1994 24 ## Created: August 19, 1994
25 25
26 function [a, b, c, d] = unpacksys (syst) 26 function [a, b, c, d] = unpacksys (syst)
27 27
28 warning("unpacksys obsolete; calling sys2ss"); 28 warning ("unpacksys obsolete; calling sys2ss");
29 [a,b,c,d] = sys2ss(syst); 29 [a, b, c, d] = sys2ss (syst);
30 30
31 endfunction 31 endfunction
32 32