i want to find the final settling time alone,what function should i want to use? i hv already used stepinfo fn but i want settling time alone .can anyone helpme out with this ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti

0 Commenti
Risposta accettata
Birdman
il 1 Dic 2017
Actually, stepinfo will do it. Consider the following approach for it:
Gs=tf(1,[1 1]);
result=stepinfo(Gs);
SettlingTime=result.SettlingTime
This will directly give you the settling time.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Multirate Signal Processing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!