每当 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>
有没有可能阻止这种情况?
最佳答案
尝试设置选项:
opts = optimset('Diagnostics','off', 'Display','off');
[x,fval] = fsolve(@myfun, x0, opts);
关于matlab - fsolve 完成后停止消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3697936/