steady state error command
302 ビュー (過去 30 日間)
古いコメントを表示
Is there a command that will give the steady state error of the the response of a transfer function
0 件のコメント
回答 (2 件)
Paulo Silva
2011 年 3 月 30 日
SP=5; %input value, if you put 1 then is the same as step(sys)
[y,t]=step(SP*sys); %get the response of the system to a step with amplitude SP
sserror=abs(SP-y(end)) %get the steady state error
7 件のコメント
JAMES KEEN
2021 年 2 月 24 日
@irshad maz I believe it means setpoint i.e. the point of which you want the system response to settles at.
Mohammad Hosein Forghani
2020 年 6 月 27 日
Another approach theoretically would be final value theorem, I might also implement that in MATLAB.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!