借助scipy.fft.dst()方法,我们可以通过选择不同类型的序列来计算离散正弦变换,并使用此方法返回变换后的数组。
用法:
scipy.fft.dst(x, type=2)
返回值:它将返回转换后的数组。
范例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)
输出:
[13.06562965 -5.65685425 5.41196100 -4.00000000]
范例2:
Python3
# 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]
相关用法
- Python os._exit()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.renames()用法及代码示例
- Python os.lseek()用法及代码示例
- Python calendar formatmonth()用法及代码示例
- Python PyTorch sin()用法及代码示例
- Python Sympy Line.is_parallel()用法及代码示例
- Python PIL GaussianBlur()用法及代码示例
- Python range()用法及代码示例
- Python Numpy np.hermefit()用法及代码示例
- Python Numpy np.hermevander()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python – scipy.fft.dst() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。