how find ramp response

M
manoj_saini · Jan 14, 2025 · 471 views
Question
what is method to find out ramp response of a transfer system. there is any command like step or impulse?
Expert Answer
Profile picture of John Williams
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

Get a Free Consultation or a Sample Assignment Review!