how to obtain the parameters of the step response within matlab?
25 次查看(过去 30 天)
显示 更早的评论
hello, I have step response in open loop of my model and I want to use Matlab to obtain the : T time constant L dead time A see figure
0 个评论
回答(1 个)
M
2018-5-24
2 个评论
M
2018-5-31
it is used only when there is some oscillation before settling.
No, try:
sys=tf([1],[1 1]);
you can check that it is a first order system (no oscillations) with:
step(sys);
and you can retrieve the data you want with:
stepinfo(sys)
ans =
struct with fields:
RiseTime: 2.1970
SettlingTime: 3.9121
SettlingMin: 0.9045
SettlingMax: 1.0000
Overshoot: 0
Undershoot: 0
Peak: 1.0000
PeakTime: 10.5458
What other meaningful information would you want?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Time and Frequency Domain Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!