📜  Python中的 scipy.fft()

📅  最后修改于: 2022-05-13 01:55:44.083000             🧑  作者: Mango

Python中的 scipy.fft()

scipy.fft()方法的帮助下,我们可以通过传递简单的 1-D numpy 数组来计算快速傅立叶变换,并使用此方法返回变换后的数组。

快速傅里叶变换

示例 #1:

在这个例子中,我们可以看到通过使用scipy.fft()方法,我们能够通过传递数字序列来计算快速傅立叶变换并返回变换后的数组。

Python3
# import scipy and numpy
import scipy
import numpy as np
  
x = np.array(np.arange(10))
# Using scipy.fft() method
gfg = scipy.fft(x)
  
print(gfg)


Python3
# import scipy and numpy
import scipy
import numpy as np
  
x = np.array(np.arange(5))
# Using scipy.fft() method
gfg = scipy.fft(x)
  
print(gfg)


输出 :

示例 #2:

Python3

# import scipy and numpy
import scipy
import numpy as np
  
x = np.array(np.arange(5))
# Using scipy.fft() method
gfg = scipy.fft(x)
  
print(gfg)

输出 :