Filter löschen
Filter löschen

a problem with setting fmincon options?

3 Ansichten (letzte 30 Tage)
Abdelrahman Taha
Abdelrahman Taha am 16 Jan. 2020
Bearbeitet: Matt J am 16 Jan. 2020
I am doing optimization using fmincon, and while trying to set the objective limit to (1) using this command:
options = optimoptions('fmincon','ObjectiveLimit',1.0);
i get this error:
Error using optimfcnchk (line 99)
NONLCON must be a function.
Error in fmincon (line 427)
confcn = optimfcnchk(NONLCON,'fmincon',length(varargin),funValCheck,flags.gradconst,false,true);
So, what could be casuing this problem? given that the function is working properly without setting that limit and the error is certainly caued by this above posted command.
  1 Kommentar
Matt J
Matt J am 16 Jan. 2020
and the error is certainly caued by this above posted command.
No, not necessarily.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Matt J
Matt J am 16 Jan. 2020
Bearbeitet: Matt J am 16 Jan. 2020
I would guess that you entered your options object as the 9th input argument to fmincon when it really should be the 10th. If you have no nonlinear constraints, it should look like,
x = fmincon(fun,x0,A,b,Aeq,beq,lb,ub,[],options)

Weitere Antworten (0)

Kategorien

Mehr zu Nonlinear Optimization finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by