Filter löschen
Filter löschen

How can you obtain a system time response to a ramp function in Matlab?

3 Ansichten (letzte 30 Tage)
I need to explain this in words and as I am new to matlab I do not know how to obtain a ramp function from a system time response via Matlab.

Akzeptierte Antwort

TastyPastry
TastyPastry am 21 Okt. 2015
There's a solution by Azzi Abdelmalek here
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)

Weitere Antworten (0)

Kategorien

Mehr zu Dynamic System Models finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by