Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
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)

Respuesta aceptada

Alan Weiss
Alan Weiss el 22 de Nov. de 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

Más respuestas (0)

Categorías

Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by