Python中的正弦函数作为泰勒级数逼近

时间:2019-02-17 21:05:39

标签: python numpy sine taylor-series

我试图将正弦函数实现为泰勒级数逼近。使用泰勒级数逼近表无法得到合理的结果。我不明白为什么。

结果是: sine with Taylor Series Approximation

我在Python中的代码在这里:

import numpy as np
import matplotlib.pyplot as plt
import functools
f_reduce = functools.reduce

pow = np.power

from math import factorial

def f(t):
    return 2*t + np.pi / 2

# sine function in Taylor series form
def t_sin(t):
    def inner(n):
        return pow(-1, n) * pow(t, 2*n + 1) / factorial(2*n + 1)
    return f_reduce( lambda x,y: x + y, [ inner(step) for step in range(80) ] )

time = np.arange(-10*np.pi, 10 * np.pi, 0.1)
# x = np.sin(f(time))
x = t_sin(f(time))

plt.plot(time, x)
plt.show()

我的代码有什么问题?我想念什么吗?

1 个答案:

答案 0 :(得分:0)

由于@mkrieger,函数没有问题,但是范围非常愚蠢。现在,它实际上看起来像这样:

enter image description here

谢谢@mkrieger! :))