fsolve terminate far before finding answer when using TolFun option
Show older comments
fsolve terminate far before finding answer when using TolFun option. I wrote a simple code to show my problem:
======================================
clc
clear
Opt=optimoptions('fsolve','Tolfun',1);
x0=10;
x_solution=fsolve(@fff,x0,Opt);
function y=fff(x)
y=x^2;
end
=========================
x_solution=6.5
6.5^2=42.5 and is far from (Tolfun=1)
Can anyone help me to know how should I solve this issue. Thanks a lot
Accepted Answer
More Answers (0)
Categories
Find more on Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!