解决错误:' numpy.ndarray'对象不可调用

时间:2017-03-19 09:00:26

标签: python numpy sympy

import sympy as sp
sp.init_printing()
%matplotlib notebook
import numpy as np
import matplotlib.pyplot as plt
from IPython.display import display

Problem

有人可以帮帮我吗?

2 个答案:

答案 0 :(得分:0)

变量y是一个numpy.ndarray,而不是callable,这意味着它不能像函数(或其他可调用的)那样使用:y();仅编入索引,例如y[]。你可能想写sp.Derivative(y[x],x)

答案 1 :(得分:0)

我怀疑你想要解决仅涉及标量变量的微分方程。

>>> import sympy as sp
>>> sp.var('x')
x
>>> f = sp.Function('f')
>>> sp.dsolve(sp.Derivative(f(x),x)-(1/(1+x**2)-2*f(x)**2))
Eq(f(x), x**3*(2*C1*(C1 - 1) - 1)/3 + x**5*(C1*(16*C1*(-9*C1 + 1) - 13*C1 + 2) - 20*C1 + 12)/30 + C1 + C1*x + C1*x**4*(13*C1 + 2)/6 - C1**2*x**2 + O(x**6))

如果您有初始条件且需要求解仲裁常数,那么Represent a first order differential equation in numpy可能有所帮助。 (我不确定。)