what is method to find out ramp response of a transfer system. there is any command like step or impulse?
John Williams answered .
2025-11-20
s = tf('s'); G = 1/(s+1);
figure subplot(311),
impulse(G); % Impulse reponse
subplot(312),
step(G); % Step Response
subplot(313),
step(G / s); % Ramp response