How to give arguments to fmincon using ssest in system identification toolbox?
4 次查看(过去 30 天)
显示 更早的评论
No examples exist anywhere as far as I can tell.
0 个评论
采纳的回答
Matt J
2024-10-18
Perhaps as follows,
opts=ssestOptions(SearchMethod='fmincon');
opts.SearchOptions.Algorithm='trust-region-reflective';
opts.SearchOptions.FunctionTolerance=1e-8;
opts.SearchOptions
3 个评论
Matt J
2024-10-20
Constraints and bounds are not set by passing arguments to fmincon. They are specified using the init_sys argument to ssest
更多回答(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!