Question
what is method to find out ramp response of a transfer system. there is any command like step or impulse?
Related Questions
Expert Answer
John Williams
PhD Expert
Answered Aug 11, 2026
You could get the ramp response by dividing your transfer function by s, and then taking the step response.
For example:
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
Have a different question? Ask here