Stepinfo for time delayed systems
9 ビュー (過去 30 日間)
古いコメントを表示
I have time delayed system. For example,
G(s)=(1/(s+1))*e^-2s
The system has 2 second time delay. How can I find stepinfo data?
0 件のコメント
採用された回答
Bora Eryilmaz
2023 年 3 月 21 日
編集済み: Bora Eryilmaz
2023 年 3 月 21 日
s = tf('s');
G = (1/(s+1))*exp(-2*s)
% Step response information
step(G)
stepinfo(G)
% Time delay of the system
G.InputDelay
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!