Stepinfo for time delayed systems
9 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Bora Eryilmaz
on 21 Mar 2023
Edited: Bora Eryilmaz
on 21 Mar 2023
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 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!