comparison scripts/control/system/syscont.m @ 3438:2e06c3941943

[project @ 2000-01-14 06:33:18 by jwe]
author jwe
date Fri, 14 Jan 2000 06:34:24 +0000
parents 65b3519ac3a1
children b5238ac1dca9
comparison
equal deleted inserted replaced
3437:3c609681b2bf 3438:2e06c3941943
48 usage("[csys,Acd,Ccd,Dcd] = syscont(sys)"); 48 usage("[csys,Acd,Ccd,Dcd] = syscont(sys)");
49 elseif (!is_struct(sys)) 49 elseif (!is_struct(sys))
50 error("sys must be in system data structure form"); 50 error("sys must be in system data structure form");
51 endif 51 endif
52 52
53 sys = sysupdate(sys,"ss"); 53 sys = sysupdate (sys, "ss");
54 [n_tot,st_c,st_d,y_c,y_d] = syscont_disc(sys); # get ranges 54 [n_tot, st_c, st_d, y_c, y_d] = __syscont_disc__ (sys); # get ranges
55 55
56 ## assume there's nothing there; build partitions as appropriate 56 ## assume there's nothing there; build partitions as appropriate
57 Acc = Acd = Bcc = Ccc = Ccd = Dcc = []; 57 Acc = Acd = Bcc = Ccc = Ccd = Dcc = [];
58 58
59 if(isempty(st_c) & isempty(y_c)) 59 if(isempty(st_c) & isempty(y_c))