首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >fsolve完成后停止消息

fsolve完成后停止消息
EN

Stack Overflow用户
提问于 2010-09-13 13:09:09
回答 1查看 4.5K关注 0票数 3

每当fsolve完成时,它都会给出输出

代码语言:javascript
复制
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>

有没有可能阻止这一切?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2010-09-13 13:37:24

尝试设置选项:

代码语言:javascript
复制
opts = optimset('Diagnostics','off', 'Display','off');
[x,fval] = fsolve(@myfun, x0, opts);
票数 6
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/3697936

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档