How to give arguments to fmincon using ssest in system identification toolbox?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Johan Lundström
el 18 de Oct. de 2024
Comentada: Johan Lundström
el 21 de Oct. de 2024
No examples exist anywhere as far as I can tell.
0 comentarios
Respuesta aceptada
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
3 comentarios
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
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear Model Identification en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!