我正在尝试复制前一个帖子中给出的答案: How to calculate a Fourier series in Numpy?
import numpy as np
import matplotlib.pyplot as plt
import itertools
def func(x):
if x >= 1.0 or x <= -1.0:
return 0
else:
return (abs(x) - 1.0)
a = 1.0
b = -1.0
N = 128.
time = np.linspace( a, b, N )
y = (np.fromiter(itertools.imap(func, time),
dtype=time.dtype, count=time.shape[0]))
fig = plt.figure()
ax = fig.add_subplot(1,1,1)
ax.plot(time,y)
period = 2.
def cn(n):
c = y*np.exp(-1j*2*n*np.pi*time/period)
return c.sum()/c.size
def f(x, Nh):
f = np.array([2*cn(i)*np.exp(1j*2*i*np.pi*x/period) for i in range(1,Nh+1)])
return f.sum()
y2 = np.array([f(t,10).real for t in time])
ax.plot(time, y2)
plt.show()
我得到了一个接近正确答案的解决方案,但转移了。我不确定我做错了什么。
答案 0 :(得分:3)
错误似乎与您的黎曼和method(右/中/左)有关 - 由regularfry表示。使用中间方法给出:
代码:
import numpy as np
import matplotlib.pyplot as plt
import itertools
def func(x):
if x >= 1.0 or x <= -1.0:
return 0
else:
return (abs(x) - 1.0)
a = 1.0
b = -1.0
N = 128.
time = np.linspace( a, b, N )
y = (np.fromiter(itertools.imap(func, time),
dtype=time.dtype, count=time.shape[0]))
period = 2.
def cn(n):
c = y*np.exp(-1j*2*n*np.pi*time/period)
return c.sum()/c.size
def f(x, Nh):
rng = np.arange(.5, Nh+.5)
f = np.array([2*cn(i)*np.exp(1j*2*i*np.pi*x/period) for i in rng])
return f.sum()
y2 = np.array([f(t,10).real for t in time])
fig = plt.figure()
ax = fig.add_subplot(1,1,1)
ax.plot(time, y)
ax.plot(time, y2)
plt.show()
正如Sven在another question中指出的那样,使用列表推导(和imap
)代替数组和ufuncs的效率非常低(如果遇到性能问题)
答案 1 :(得分:2)
在我看来,你的DC术语已经丢失了。我现在无法检查自己,但你确定f()中1的范围(1,Nh + 1)是否正确?
答案 2 :(得分:1)
代码的矢量化版本:
import numpy as np
import matplotlib.pyplot as plt
from optparse import OptionParser
def func(x):
return np.where(np.abs(x) >= 1, 0., np.abs(x) - 1.0)
def cn(x, y, n, period):
c = y * np.exp(-1j * 2. * np.pi * n * x / period)
return c.sum()/c.size
def f(x, y, Nh, period):
rng = np.arange(.5, Nh+.5)
coeffs = np.array([cn(x,y,i,period) for i in rng])
f = np.array([2. * coeffs[i] * np.exp(1j*2*i*np.pi*x/period) for i in rng])
return f.sum(axis=0)
if __name__=='__main__':
Version = '0.1'
usage = "usage: %prog [options]"
parser = OptionParser(usage = usage,version="%prog "+Version)
parser.add_option("-a", dest='a', type='float', default=1., help="initial time")
parser.add_option("-b", dest='b', type='float', default=-1., help="end time")
parser.add_option("-N", "--Nt", dest='N', type='int', default=128, help="number of time steps")
parser.add_option("-p", "--period", dest='period', type='float', default=2., help="period [time span]")
parser.add_option("--Nh", dest='Nh', type='int', default=10, help="number of fourier series terms")
(options, args) = parser.parse_args()
for key,value in options.__dict__.iteritems():
exec key + ' = ' + repr(value)
time = np.linspace( a, b, N )
y = func(time)
period = np.abs(a-b)
y2 = f(time,y,Nh,period).real
fig = plt.figure()
ax = fig.add_subplot(1,1,1)
ax.plot(time, y)
ax.plot(time, y2)
plt.show()
鉴于代码已使用名称“fourier_series.py”保存,您可以尝试:
python fourier_series.py -N 512 --Nh 128
在普通终端或:
%run fourier_series.py -N 512 --Nh 128
在ipython控制台中