我想使用 scipy.integrate.quad 集成两个时移和频移 Hermite 函数的乘积。
但是,由于包含大阶多项式,因此会出现数值错误。这是我的代码:
import numpy as np
import scipy.integrate
import scipy.special as sp
from math import pi
def makeFuncs():
# Create the 0th, 4th, 8th, 12th and 16th order hermite function
return [lambda t, n=n: np.exp(-0.5*t**2)*sp.hermite(n)(t) for n in np.arange(5)*4]
def ambgfun(funcs, i, k, tau, f):
# Integrate f1(t)*f2(t+tau)*exp(-j2pift) over t from -inf to inf
f1 = funcs[i]
f2 = funcs[k]
func = lambda t: np.real(f1(t) * f2(t+tau) * np.exp(-1j*(2*pi)*f*t))
return scipy.integrate.quad(func, -np.inf, np.inf)
def main():
f = makeFuncs()
print "A00(0,0):", ambgfun(f, 0, 0, 0, 0)
print "A01(0,0):", ambgfun(f, 0, 1, 0, 0)
print "A34(0,0):", ambgfun(f, 3, 4, 0, 0)
if __name__ == '__main__':
main()
Hermite 函数是正交的,因此所有积分都应为零。但是,它们不是,如输出所示:
A00(0,0): (1.7724538509055159, 1.4202636805184462e-08)
A01(0,0): (8.465450562766819e-16, 8.862237123626351e-09)
A34(0,0): (-10.1875, 26.317246925873935)
我怎样才能使这个计算更准确?来自 scipy 的 hermite 函数包含一个权重变量,该变量应用于高斯求积,如文档 ( http://docs.scipy.org/doc/scipy/reference/special.html#orthogonal-polynomials ) 中所给出。但是,我没有在文档中找到如何使用这些权重的提示。
我希望你能帮忙:)
谢谢,马克斯