Failure in initial objective function evaluation. FMINCON cannot continue. error in fmincon line(536)
Afficher commentaires plus anciens
I am trying to optimize my Gibbs energy function for a mixture of gases with fmincon and I keep getting 3 errors. my function looks like this.
function G=myGfunc(nj)
Enj=sum(nj);
G=sum(nj.*(Gjo/R/T+ log(nj/Enj*(p/po))));
end
and I call the fmincon as follows:
options=optimset('Algorithm', 'interior-point');
x=fmincon(@myGfunc,x0,[],[],Aeq,beq,LB,[],[],options);
the errors I get are:
Undefined function or variable 'Gjo'.
Error in myGfunc (line 3)
G=sum(nj.*(Gjo/R/T+ log(nj/Enj*(p/po))));
Error in fmincon (line 536)
initVals.f = feval(funfcn{3},X,varargin{:});
Error in myMeth (line 70)
x=fmincon(@myGfunc,x0,[],[],Aeq,beq,LB,[],[],options);
Caused by:
Failure in initial objective function evaluation. FMINCON cannot continue.
It's weird since my Gjo is well defined and it gave solid values, before not defining the parameters needed for fmincon.
any help would by greatly appreciated
Réponse acceptée
Plus de réponses (3)
Alan Weiss
le 9 Oct 2017
0 votes
Almost certainly, you are not passing the value of Gjo that is in your workspace. See Passing Extra Parameters.
Alan Weiss
MATLAB mathematical toolbox documentation
3 commentaires
Sarv
le 10 Oct 2017
Modifié(e) : Walter Roberson
le 10 Oct 2017
Walter Roberson
le 10 Oct 2017
You did not initialize your global variables. All of those global variables are going to be [] because they have not been initialized. Your routine is going to be returning [] rather than a scalar.
Sarv
le 10 Oct 2017
Alan Weiss
le 10 Oct 2017
0 votes
I suggest that you use the debugger and see what the size of the returned value G is from your objective function. I suspect that you are returning a vector, not a scalar.
Alan Weiss
MATLAB mathematical toolbox documentation
Catégories
En savoir plus sur Get Started with Optimization Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!