|
在R2008a上执行的结果:
%------------m.m----------------
function f=m()
s=tf('s');G=12/(s*(s+1)^3).*exp(-2*s)
Gc=tf([2,3],[1,0],'Variable','s')
f=feedback(G,Gc)
%---------------------------------
Transfer function:
12
exp(-2*s) * -----------------------
s^4 + 3 s^3 + 3 s^2 + s
Transfer function:
2 s + 3
-------
s
??? Error using ==> lti.feedback at 127
Error using ==> ltipack.tfdata.feedback at 20
System interconnection gives rise to internal
delays and can only be represented in state
space. Convert at least one of the models to
state space using the "ss" command.
Error in ==> Untitled at 4
f=feedback(G,Gc) |
|