spec2cep(tuneR)
spec2cep()所属R语言包:tuneR
Spectra to Cepstra Conversion
光谱逆谱转换
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate cepstra from spectral samples (in columns of spec) through Discrete Cosine Transformation.
从的光谱样本(列规格)通过离散余弦变换计算逆谱。
用法----------Usage----------
spec2cep(spec, ncep = 12, type = c("t2", "t1", "t3", "t4"))
参数----------Arguments----------
参数:spec
Input spectra (samples/time frames in columns)
输入光谱(样本/列的时间框架)
参数:ncep
Number of cepstra to return
数逆谱返回
参数:type
DCT Type
DCT类型
值----------Value----------
<table summary="R valueblock"> <tr valign="top"><td>cep </td> <td> Matrix of resulting cepstra.</td></tr> <tr valign="top"><td>dctm </td> <td> Returns the DCT matrix that spec was multiplied by to give cep.</td></tr> </table>
<table summary="R valueblock"> <tr valign="top"> <TD> cep </ TD> <TD>矩阵所产生的逆谱。</ TD> </ TR> <TR VALIGN =“顶“<TD> dctm </ TD> <TD>返回DCT矩阵,规范乘以给CEP。</ TD> </ TR> </ TABLE>
(作者)----------Author(s)----------
Sebastian Krey <a href="mailto:krey@statistik.tu-dortmund.de">krey@statistik.tu-dortmund.de</a>
参考文献----------References----------
<h3>See Also</h3>
实例----------Examples----------
testsound <- normalize(sine(400) + sine(1000) + square(250), "16")
pspectrum <- powspec(testsound@left, testsound@samp.rate)
aspectrum <- audspec(pspectrum, testsound@samp.rate)
cepstra <- spec2cep(aspectrum$aspectrum)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|