S = stepinfo(Y,T,180,'SettlingTimeThreshold',ST) ;
ts=S.SettlingTime;
这是否意味着 ts 是 |Y-180| 的时间?变得小于( ST/100 )或其他东西......在我的代码中虽然 |Y-180| 小于 ST/100 但我得到 ts = NAN; 请帮帮我
我的代码:
if ee(end)>160
S = stepinfo(ee,times,180,'SettlingTimeThreshold',0.01);
else
S = stepinfo(ee,times,0.5,'SettlingTimeThreshold',1);
end
settling_time = S.SettlingTime;
end
其中“ee”是每个“时间”的值数组
ee 基本上是误差角,一段时间后变为 180 或 0.. 谢谢