SymPy kullanarak python'daki bir denklemi çözmeye çalışıyorum. Ben bu gibi yeni bir denklem oluşturmak için SymPy ile kullanmak function = y(8.0-(y**3.0))
gibi (bir şey oluşturulan denklem vardır:. y(8.0-(y**3.0)) == 2
verir eq = sympy.Eq(function, 2)
ama sympy.solve(eq)
çalışmak görünmüyorPython bir değişken için denklemi çözme
>>> from sympy import Eq, Symbol as sym, solve
>>> y = sym('y')
>>> eqa = Eq(y(8.0-(y**3.0)), 8)
>>> solve(eqa)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/pymodules/python2.6/sympy/solvers/solvers.py", line 332, in solve
result = tsolve(f, *symbols)
File "/usr/lib/pymodules/python2.6/sympy/solvers/solvers.py", line 716, in tsolve
raise NotImplementedError("Unable to solve the equation.")
NotImplementedError: Unable to solve the equation.
sayesinde okuma için