필터 지우기
필터 지우기

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

조회 수: 3 (최근 30일)
3011
3011 2015년 10월 21일
답변: TastyPastry 2015년 10월 21일
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.

채택된 답변

TastyPastry
TastyPastry 2015년 10월 21일
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)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by