how find ramp response
Show older comments
what is method to find out ramp response of a transfer system.......... there is any command like step or impulse?
1 Comment
Mercy Mercy
on 16 Jul 2020
Find the time response for the system G(s)=1/s+19 for unit r amp input
Accepted Answer
More Answers (6)
Azzi Abdelmalek
on 15 Feb 2013
Edited: Azzi Abdelmalek
on 15 Feb 2013
You can use lsim function for any input
t=0:0.1:10
alpha=2
ramp=alpha*t % Your input signal
model=tf(1,[1 20 3]); % Your transfer function
[y,t]=lsim(model,ramp,t)
plot(t,y)
1 Comment
Daniel
on 12 Oct 2022
what is alpha
Mercy Mercy
on 16 Jul 2020
0 votes
Find the time response for the system G(s)=1/s+19 for unit r amp input
zalikha zamri
on 18 Dec 2020
0 votes
how to get a ramp response from s^2+3s/ s^2+7s+6
1 Comment
Ibrahim Baza
on 22 Jun 2021
%just define the tf and use step function to change the tf from T=1*G to
%T=1/s * G
s=tf('s');
T=(s^2+3*s)/ (s^2+7*s+6);
step(T/s)
Md. Harisul Islam
on 5 Dec 2021
0 votes
Find the Laplace Transform of 

Nadir Alsabaey
on 15 Jul 2023
0 votes
Q --> Consider a system of the form shown in the figure in Problem 1. Let 𝐺(𝑠) = 𝐾 (𝑠+3) (𝑠+5) / 𝑠(𝑠+7) (𝑠+8)
1. a. What is the system type?
b. Consider 𝐾 = 1. On the same figure, plot the ramp input along with its response using lsim() command.
Iqra
on 31 Mar 2024
0 votes
give matlab code for ramp response having num=[3] and den=[ 0.1 1]
1 Comment
Categories
Find more on Digital Filter Analysis in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!