How to give arguments to fmincon using ssest in system identification toolbox?
1 view (last 30 days)
Show older comments
Johan Lundström
on 18 Oct 2024
Commented: Johan Lundström
on 21 Oct 2024
No examples exist anywhere as far as I can tell.
0 Comments
Accepted Answer
Matt J
on 18 Oct 2024
Perhaps as follows,
opts=ssestOptions(SearchMethod='fmincon');
opts.SearchOptions.Algorithm='trust-region-reflective';
opts.SearchOptions.FunctionTolerance=1e-8;
opts.SearchOptions
3 Comments
Matt J
on 20 Oct 2024
Constraints and bounds are not set by passing arguments to fmincon. They are specified using the init_sys argument to ssest
More Answers (0)
See Also
Categories
Find more on Linear Model Identification in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!