八:用MATLAB求传递函数的单位阶跃响应并绘制出曲线

Step Response

如果传递函数的分子和分母都是已知的,那么我们可以通过tf命令来定义传递函数:

sys = tf(num,den)

num和den分别是传递函数的分子和分母系数,使用step函数来求出响应曲线:

step(sys)

或者:

step(num,den)

EXAMPLE

>> num = [25];
>> den = [1 4 25];
>> G = tf(num,den)G =25--------------s^2 + 4 s + 25Continuous-time transfer function.>> step(G)


或者使用命令:

>> num = [25];
>> den = [1 4 25];
>> step(num,den)

得到相同的曲线: