当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python scipy.fftshift()用法及代码示例


借助于scipy.fftshift()方法,我们可以使用快速傅立叶变换对向量的上半部分和下半部分进行移位,并使用此方法返回移位后的向量。

用法:scipy.fft.fftshift(x)

Return:返回转换后的向量。

范例1:

在此示例中,我们可以看到,通过使用scipy.fftshift()方法,我们可以使用快速傅立叶变换对向量的下半部分和上半部分进行移位,然后返回移位后的向量。



Python3

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

输出:

[3 4 5 0 1 2]

范例2:

Python3

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

输出:

[ 6  7  8  9 10  0  1  2  3  4  5]

相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 scipy.fftshift() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。