The attachment is here. Thank you.
How to plot transfer functions?
351 ビュー (過去 30 日間)
古いコメントを表示
How can I plot this state space like the graph I attached by using tf() and step() command? Thank you!
I2/E0=1/(s^3+s^2+3*s+1)
採用された回答
Yusuf Suer Erdem
2021 年 11 月 29 日
編集済み: Yusuf Suer Erdem
2021 年 11 月 29 日
Try these codes below please;
clc; clear; close all;
numerator = 1;
denominator = [1,1,3,1];
sys = tf(numerator,denominator);
yyaxis left
plot(step(sys));
yyaxis right
plot(impulse(sys));
その他の回答 (1 件)
Adem
2024 年 2 月 7 日
clc; clear; close all;
numerator = 1;
denominator = [1,1,3,1];
sys = tf(numerator,denominator);
yyaxis left
plot(step(sys));
yyaxis right
plot(impulse(sys));
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Dynamic System Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!