Stepinfo for time delayed systems
10 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hasan
il 21 Mar 2023
Modificato: Bora Eryilmaz
il 21 Mar 2023
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 Commenti
Risposta accettata
Bora Eryilmaz
il 21 Mar 2023
Modificato: Bora Eryilmaz
il 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 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!