Python – scipy.fft.dst() 方法
借助scipy.fft.dst()方法,我们可以通过选择不同类型的序列来计算离散正弦变换,并使用该方法返回变换后的数组。
句法 :
scipy.fft.dst(x, type=2)
返回值:它将返回转换后的数组。
Example #1:在这个例子中,我们可以看到,通过使用 scipy.fft.dst() 方法,我们能够通过选择不同类型的序列来获得离散正弦变换,默认情况下它是 2。
Python3
# import scipy
from scipy import fft
# Using scipy.fft.dst() method
gfg = fft.dst([1, 2, 3, 4])
print(gfg)
Python3
# import scipy
from scipy import fft
# Using scipy.fft.dst() method
gfg = fft.dst([-6, 5, -4, 3, -2, 1], 3)
print(gfg)
输出 :
[13.06562965 -5.65685425 5.41196100 -4.00000000]
示例#2:
蟒蛇3
# import scipy
from scipy import fft
# Using scipy.fft.dst() method
gfg = fft.dst([-6, 5, -4, 3, -2, 1], 3)
print(gfg)
输出 :
[ -1.43023367 -2.3137085 -6.16568427 -7.77337942 -20.3137085
-23.82253852]