torch.fft.ifftshift¶
- torch.fft.ifftshift(input, dim=None) Tensor ¶
fftshift()
的逆运算。- 参数
示例
>>> f = torch.fft.fftfreq(5) >>> f tensor([ 0.0000, 0.2000, 0.4000, -0.4000, -0.2000])
通过
fftshift()
和ifftshift()
的往返过程得到相同的结果>>> shifted = torch.fft.fftshift(f) >>> torch.fft.ifftshift(shifted) tensor([ 0.0000, 0.2000, 0.4000, -0.4000, -0.2000])