Python中的 scipy.fftfreq()
借助scipy.fftfreq()方法,我们可以计算快速傅立叶变换频率并使用该方法返回变换后的数组。
Syntax : scipy.fftfreq(n, freq)
Return : Return the transformed array.
示例 #1:
在这个例子中,我们可以看到通过使用scipy.fftfreq()方法,我们能够计算快速傅立叶变换频率并返回变换后的数组。
Python3
# import scipy and numpy
import scipy
import numpy as np
# Using scipy.fftfreq() method
gfg = scipy.fft.fftfreq(5, 1.096)
print(gfg)
Python3
# import scipy and numpy
import scipy
import numpy as np
# Using scipy.fftfreq() method
gfg = scipy.fft.fftfreq(3, 2.4096)
print(gfg)
输出 :
[ 0. 0.18248175 0.3649635 -0.3649635 -0.18248175]
示例 #2:
Python3
# import scipy and numpy
import scipy
import numpy as np
# Using scipy.fftfreq() method
gfg = scipy.fft.fftfreq(3, 2.4096)
print(gfg)
输出 :
[ 0. 0.13833555 -0.13833555]