System Identification impulseset function: how do I avoid using deprecated features?
1 次查看(过去 30 天)
显示 更早的评论
To use impulseest to model a system, I run the following:
sstrain=iddata(target_train,inputs_train);
Imp = impulseest(sstrain,[-5 40],'PW',10,'noncausal');
I get this message:
"Warning: Use of a time vector as an input to the "impulseest" command is deprecated and may not be supported in future. Type "help impulseest" for more information."
"help impulseest" in fact has no information on this. Using a number as the second argument gives a similar warning. When I run impulseest with [] as the second argument, the result has a poorer fit. BTW, apparently the 'noncausal' option also has been deprecated.
I don't want to lose functionality in the future. What is the correct way to proceed, but still get the same quality of results I am getting now?
Thanks,
Kevin
0 个评论
采纳的回答
Star Strider
2021-4-13
The iddata call contains all the time information the identification functions need in order to estimate the system, in the array lengths of the input and output data, and the sampling interval (that defaults to 1 if not specifically provided). I would only use the iddata output with whatever other arguments impulseest needs to estimate the system to the desired specifications. A time vector or other time information is not necessary.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear Model Identification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!