comparison scripts/control/base/__bodquist__.m @ 4030:22bd65326ec1

[project @ 2002-08-09 18:58:13 by jwe]
author jwe
date Fri, 09 Aug 2002 19:00:16 +0000
parents 7923abdeb4e5
children 51cd16a73307
comparison
equal deleted inserted replaced
4029:2cc57b6169cf 4030:22bd65326ec1
56 if (nargin != 5) 56 if (nargin != 5)
57 usage ("[f, w] = __bodquist__ (sys, w, outputs, inputs, rname)"); 57 usage ("[f, w] = __bodquist__ (sys, w, outputs, inputs, rname)");
58 endif 58 endif
59 59
60 ## check each argument to see if it's in the correct form 60 ## check each argument to see if it's in the correct form
61 if (!is_struct(sys)) 61 if (!isstruct(sys))
62 error("sys must be a system data structure"); 62 error("sys must be a system data structure");
63 endif 63 endif
64 64
65 ## let __freqresp__ determine w if it's not already given 65 ## let __freqresp__ determine w if it's not already given
66 USEW = freqchkw(w); 66 USEW = freqchkw(w);