フィルターのクリア

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 Center および File ExchangeDynamic System Models についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by