matlab:知道传递函数G,怎么画出阶跃响应?

问题描述:

matlab:知道传递函数G,怎么画出阶跃响应?
例如:G=
-s + 2
-------------------------
s^3 + 17 s^2 + 80 s + 100

num=[-1 2];
den=[1 17 80 100];
t=0:0.02:2;
c=step(num,den,t);
plot(t,c); grid;
xlabel('t--sec'),ylabel('c(t)');