📜  Python| numpy np.ifft() 方法

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

Python| numpy np.ifft() 方法

np.ifft()方法的帮助下,我们可以使用np.ifft()方法得到一维傅里叶逆变换

示例 #1:
在这个例子中我们可以看到,通过使用np.ifft()方法,我们可以通过使用这个方法得到一系列的傅立叶逆变换。

# import numpy
import numpy as np
  
a = np.array([5, 4, 6, 3, 7])
# using np.ifft() method
gfg = np.fft.ifft(a)
  
print(gfg)

输出 :

示例 #2:

# import numpy
import numpy as np
  
a = np.array([-5.5, 4.4, -6.6, 3.3, -7.7])
# using np.ifft() method
gfg = np.fft.ifft(a)
  
print(gfg)

输出 :