Function 'fmincon' not supported for code generation

28 Ansichten (letzte 30 Tage)
Anuschan Albrecht
Anuschan Albrecht am 8 Mai 2021
Kommentiert: Walter Roberson am 12 Mai 2021
Hello,
im currently trying to implement nonlinear MPC in MATLAB/Simulink using the MATLAB function block.
function u_mpc = MPC(x, u_mpc, u_0, A_ineq, b_ineq, Q_mpc, R_mpc)
costfunc = @(x,u) (x)'*Q_mpc*(x) + (u_mpc)'*R_mpc*(u_mpc);
u_mpc = fmincon(costfunc, u_0, A_ineq, b_ineq);
end
The state x is provided by a plant model, the costfunction is a simple quadratic cost with weight matrices, the matrices are taken from the workspace.
Running the Simulink model results in the error: Function 'fmincon' not supported for code generation.
I'm using the 2018b version normally, tried using 2021a but got the same error.
Is there a mistake in the code or is it simply not possible to use fmincon inside a MATLAB function block?
Thanks in advance for any help.
  2 Kommentare
Anuschan Albrecht
Anuschan Albrecht am 8 Mai 2021
Thanks for your fast answer!
On the help page you linked it says to not load options from a file so I added them inside the MATLAB function block:
function u_mpc = MPC(x, u_mpc, u_0, A_ineq, b_ineq, Q_mpc, R_mpc)
costfunc = @(x,u) (x)'*Q_mpc*(x) + (u_mpc)'*R_mpc*(u_mpc);
options = optimoptions('fmincon','Algorithm','sqp');
u_mpc = fmincon(costfunc, u_0, A_ineq, b_ineq,options);
end
This results in the error: Function 'optimoptions' not supported for code generation.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Aditya Patil
Aditya Patil am 11 Mai 2021
Bearbeitet: Aditya Patil am 12 Mai 2021
fmincon codegen support was added in R2019b. Also, optimOptions is the last argument for fmincon, you should pass other arguments as empty ([]) if you are not using them. For example,
function u_mpc = MPC(x, u_mpc, u_0, A_ineq, b_ineq, Q_mpc, R_mpc)
costfunc = @(x,u) (x)'*Q_mpc*(x) + (u_mpc)'*R_mpc*(u_mpc);
options = optimoptions('fmincon','Algorithm','sqp');
Aeq = [];
beq = [];
lb = [];
ub = [];
nonlcon = [];
u_mpc = fmincon(costfunc,u_0,A_ineq,b_ineq,Aeq,beq,lb,ub,nonlcon,options);
end
  9 Kommentare
Anuschan Albrecht
Anuschan Albrecht am 12 Mai 2021
Using R2021a the code did indeed work, which is strange because I already tested an earlier iteration on a newer MATLAB version and it still produced errors. It probably had another coding mistake.
Anyways the code is running without errors on R2021a now, thanks for all the help!
Walter Roberson
Walter Roberson am 12 Mai 2021
Good point about needing a later release! I normally think about that kind of issue early on, but I missed it this time!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Manual Performance Optimization finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by