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.
我知道如何解决python使用scipy.optimize.fsolve.
python
scipy.optimize.fsolve
我定义了一个函数 f = lambda : -1*numpy.exp(-x**2),我想解决x将函数设置为某个非零的问题。例如,我想解决x使用f(x) = 5.
f = lambda : -1*numpy.exp(-x**2)
x
f(x) = 5
有没有办法做到这一点,fsolve或者我需要在 scipy 中使用其他工具?换句话说,我正在寻找类似于 Maple 的东西fsolve。
fsolve
如果您更改 的定义,这很容易f(x)。例如,如果您愿意f(x) = 5,请定义您的功能:g(x) = f(x) - 5 = 0
f(x)
g(x) = f(x) - 5 = 0