Hi,
I'm using the function FMINCON using the followung syntax:
options =
optimset('GradObj','on','Hessian','off','Display','off','DerivativeChe
ck','off','LargeScale','off');
[Y,fval,exitflag,output,lambda]=fmincon(@f,XX,A,b,Aeq,beq,[],[],[],opt
ions);
I need to extract the lagrange multipliers values, not just the
structure: how can I manage it?
thanks
|