当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python scipy.fft.dct()用法及代码示例


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

用法:

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

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

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



Python3

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

输出:

[20.00000000  -6.30864406  0.00000000  -0.44834153]

范例2:

Python3

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

输出:

[ -0.50866619  -0.58578644  -0.79439535  -1.34919819  -3.41421356
 -29.34774027]

相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python – scipy.fft.dct() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。