How to give arguments to fmincon using ssest in system identification toolbox?

1 view (last 30 days)
No examples exist anywhere as far as I can tell.

Accepted Answer

Matt J
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
ans =
Algorithm: 'trust-region-reflective' StepTolerance: 1.0000e-06 FunctionTolerance: 1.0000e-08 MaxIterations: 100
  3 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Linear Model Identification in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!