每当fsolve完成时,它都会给出输出
Equation solved.
fsolve completed because the vector of function values is near zero
as measured by the default value of the function tolerance, and
the problem appears regular as measured by the gradient.
<stopping criteria details>有没有可能阻止这一切?
发布于 2010-09-13 13:37:24
尝试设置选项:
opts = optimset('Diagnostics','off', 'Display','off');
[x,fval] = fsolve(@myfun, x0, opts);https://stackoverflow.com/questions/3697936
复制相似问题