System Identification impulseset function: how do I avoid using deprecated features?
显示 更早的评论
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 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Linear Model Identification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!