Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Mathematica 我有类似的东西
FindRoot[f[x], {x, a}]
现在我希望 FindRoot 将解决方案限制为 0 < x < 1。
我怎样才能得到这个?
谢谢
此函数有一个四参数选项:FindRoot[f[x],{x,xstart,xmin,xmax}] 如果搜索超出区间 [xmin,xmax] 则停止搜索。