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 ?
2 views (last 30 days)
Show older comments

0 Comments
Accepted Answer
Birdman
on 1 Dec 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.
More Answers (0)
See Also
Categories
Find more on Multirate Signal Processing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!