阅读背景:

我得到一个“mul对象不可调用” - 错误

来源:互联网 
import sympy as sp
def taylorCoefficient(f, a, n):
    x = sp.symbols("x")
    coefficient = []
    for i in range(0, n + 1):
        afgeleide = sp.diff(f(x), x, n=n)
        def f(x0): return afgeleide.subs(x, x0)
        coefficient += f(a) / sp.factorial(n)
    return coefficient


x = sp.symbols("x")
taylorCoefficient(x ** 2 * sp.sin(x / 2), 0, 3)
import sympy as sp
def taylorCoefficient(f, a, 



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: