Why do I get an error when using 'fmincon' in Simulink?

6 vues (au cours des 30 derniers jours)
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?

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 28 Fév 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: [].

Plus de réponses (0)

Tags

Aucun tag saisi pour le moment.

Produits


Version

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by