Effacer les filtres
Effacer les filtres

why there is a different value between the latest Fval and the Optimal Solution that Fmincon gives me

1 vue (au cours des 30 derniers jours)
The output that Fmincon gives to me are correct absolutely,but when I check the iterations, at the latest iteration ,Fval=3.742029e-12,which is not the optimal function value:x=(1,1),fun=0,the Fval should be 0 instead of 3.742029e-12. How Fincon gets the optimal solution x=(1,1)
here are my codes:
lb=[-5,-5];
ub=[5,5];
fun = @(x)100*(x(2)-x(1)^2)^2 + (1-x(1))^2;
A = [];
b = [];
Aeq = [];
beq = [];
x0 = [0.0,0.0];
nonlcon = [];
options = optimoptions('fmincon','Display','iter','Algorithm','sqp');
x= fmincon(fun,x0,A,b,Aeq,beq,lb,ub,nonlcon,options)

Réponse acceptée

Alan Weiss
Alan Weiss le 22 Nov 2021
The answer is correct to within tolerances. Generally, you cannot expect an answer that is correct down to the last few decimal places. To learn more ablut what you can expect from floating-point calculations, see
Alan Weiss
MATLAB mathematical toolbox documentation

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by