Python solve equation for one variable

后端 未结 5 1995
逝去的感伤
逝去的感伤 2021-02-06 11:08

I\'m trying to solve an equation in python using SymPy. I have a generated equation (something like function = y(8.0-(y**3.0)) which I use with SymPy to create a ne

5条回答
  •  执念已碎
    2021-02-06 11:43

    Yours is a non linear equation ... So you can use optimize.fsolve for it. For further details look for the function in this tutorial scipy

提交回复
热议问题