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

1 次查看(过去 30 天)
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)

采纳的回答

Alan Weiss
Alan Weiss 2021-11-22
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by