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)

Accepted Answer

Birdman
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)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!