Failure in initial objective function evaluation when I'm solving a linear programming.

조회 수: 1 (최근 30일)
I'm solving this question above and my code is below:
This is my coding in first file
function z= myobj01(x)
x= -3*x(1)-4*x(2);
end
And this is my coding in second file
fun= @myobj01;
x0=[0,1];
A=[1 1; 1 2; 0 1];
b=[6;8;3];
Aeq=[]; beq=[];
lb=[0,0]; ub=[];
[x,fval]=fmincon(fun,x0,A,b,Aeq,beq,lb,ub)
The problem is occuring in my second coding
It shows
Output argument "z" (and maybe others) not assigned during call to "myobj01".
Error in fmincon (line 535)
initVals.f = feval(funfcn{3},X,varargin{:});
Error in myobj02 (line 8)
[x,fval]=fmincon(fun,x0,A,b,Aeq,beq,lb,ub)
Caused by:
Failure in initial objective function evaluation. FMINCON cannot continue.
When I run the second coding.
May I ask, where's the problem?

채택된 답변

Stephan
Stephan 2021년 6월 25일
Use:
function z= myobj01(x)
z= -3*x(1)-4*x(2);
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Systems of Nonlinear Equations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by