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

1 visualización (últimos 30 días)
No examples exist anywhere as far as I can tell.

Respuesta aceptada

Matt J
Matt J el 18 de Oct. de 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 comentarios
Matt J
Matt J el 20 de Oct. de 2024
Constraints and bounds are not set by passing arguments to fmincon. They are specified using the init_sys argument to ssest

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Linear Model Identification en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by