📜  Python – scipy.fft.idst() 方法

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

Python – scipy.fft.idst() 方法

借助scipy.fft.idst()方法,我们可以通过选择不同类型的序列来计算离散正弦变换的逆,并使用该方法返回变换后的数组。

句法:

scipy.fft.idst(x, type=2)

返回值:它将返回转换后的数组。

示例#1:在这个示例中,我们可以看到通过使用scipy.fft.idst()方法,我们可以通过选择不同类型的序列来获得离散正弦变换的逆,默认为 2。

Python3
# import scipy
from scipy import fft
  
# Using scipy.fft.idst() method
gfg = fft.idst([1, 2, 3, 4])
  
print(gfg)


Python3
# import scipy
from scipy import fft
  
# Using scipy.fft.idst() method
gfg = fft.idst([-6, 5, -4, 3, -2, 1], 3)
  
print(gfg)


输出 :

[ 1.6421339  -0.2024893   0.09040392 -0.06497288]

示例 #2:

Python3

# import scipy
from scipy import fft
  
# Using scipy.fft.idst() method
gfg = fft.idst([-6, 5, -4, 3, -2, 1], 3)
  
print(gfg)

输出 :

[-0.02311678  0.00 -0.11785113  0.000 -1.20162809 -3.5]