a problem with setting fmincon options?

조회 수: 2 (최근 30일)
Abdelrahman Taha
Abdelrahman Taha 2020년 1월 16일
편집: Matt J 2020년 1월 16일
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
Matt J
Matt J 2020년 1월 16일
and the error is certainly caued by this above posted command.
No, not necessarily.

댓글을 달려면 로그인하십시오.

채택된 답변

Matt J
Matt J 2020년 1월 16일
편집: Matt J 2020년 1월 16일
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)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Nonlinear Optimization에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by