1-abs(x)的图傅立叶级数方程

时间:2019-02-12 03:36:44

标签: python python-3.x jupyter-notebook

我需要傅里叶级数1-abs(x)的有限和图的帮助。总和是1,5和100。

这里是我的代码:

from sympy import fourier_series, pi
from sympy.abc import x
s = fourier_series(1 - abs(x), (x, -1, 1))
a = s.sigma_approximation(5)
print(a)
legend = []
sol = np.zeros(1000)
for i in range(-1,2):
    sol = lambda x: a, i
    legend.append(sol)
    plt.plot(x,sol)

打印语句给我: 4 * cos(pi * x)* sinc(pi / 5)/ pi ** 2 + 4 * cos(3 * pi * x)* sinc(3 * pi / 5)/(9 * pi ^ 2)+ 1 / 2

我如何绘制x的方程从-1到1?我的情节不起作用。

0 个答案:

没有答案