Why do I get an error when using 'fmincon' in Simulink?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 28 de Feb. de 2022
Respondida: MathWorks Support Team
el 28 de Feb. de 2022
I'm using MATLAB R2021b and try to implement 'fmincon' in MATLAB Function block like below.
x = fmincon(fun,x0,A,b);
However, I get an error when I run simulation.
FMINCON requires 10 input arguments. Pass OPTIMOPTIONS to the solver with property 'Algorithm' set to 'sqp'.
How can I escape the error?
Respuesta aceptada
MathWorks Support Team
el 28 de Feb. de 2022
If you use 'fmincon' in MATLAB Function block, you have to write codes in a special manner, because the MATLAB Function block relies on code generation technology.
The limitation is written in this document.
You should set an option and pass 10 arguments to 'fmincon'.
options = optimoptions('fmincon', 'Algorithm', 'sqp');
x = fmincon( fun , x0 , A , b , Aeq , beq , lb , ub , nonlcon , options )
Note:
Additional arguments like Aeq, beq,... can be empty: [].
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!