MATLAB: How can I obtain the unit-ramp of a transfer function and plot it and thanks in advance

unit ramp from transfer function

c(s)/R(s)=10 /s^2 +2s+10

Best Answer

H=tf(10,[1 2 10])
t=0:0.01:10;
slope=1;
u=slope*t;
lsim(H,u,t)
Related Question