📜  Python中的 scipy.rfft()

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

Python中的 scipy.rfft()

借助scipy.rfft()方法,我们可以计算实序列的快速傅立叶变换,并使用该方法返回变换后的向量。

示例 #1:

在这个例子中,我们可以看到通过使用scipy.rfft()方法,我们能够计算实序列的快速傅立叶变换,并使用该方法返回变换后的向量。

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


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


输出 :

示例 #2:

Python3

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

输出 :