用定点迭代求解该方程
我怎样才能解这个方程
x3 + x - 1 = 0
使用定点迭代?
我可以在网上找到任何定点迭代代码(尤其是Python)吗?
How can I solve this equation
x3 + x - 1 = 0
using fixed point iteration?
Is there any fixed-point iteration code (especially in Python) I can find online?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 scipy.optimize .fixed_point:
定义
fixed_point
的Python代码位于scipy/optimize/minpack.py中。确切的位置取决于scipy
的安装位置。您可以通过输入找到当前的固定点源代码可以通过访问文档页面并单击
[source]
链接。Using scipy.optimize.fixed_point:
The Python code defining
fixed_point
is in scipy/optimize/minpack.py. The exact location depends on wherescipy
is installed. You can find that out by typingThe current
fixed_point
source code can be found online by going to the documentation page and clicking the[source]
link.尝试使用 SymPy 库。这是一个相关示例:
我不确定 SymPy 使用哪种算法来求解方程,尽管。
Try the SymPy library. Here's a relevant example:
I'm not sure which algorithm SymPy uses to solve the equation, though.