powspec(tuneR)
powspec()所属R语言包:tuneR
Powerspectrum
Powerspectrum
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute the powerspectrum of the input signal. Basically output a power spectrogram using a Hamming window.
计算输入信号powerspectrum。基本输出功率使用汉明窗的频谱图。
用法----------Usage----------
powspec(x, sr = 8000, wintime = 0.025, steptime = 0.01, dither = FALSE)
参数----------Arguments----------
参数:x
Vector of samples.
样本的向量。
参数:sr
Sampling rate of the signal.
的信号的采样率。
参数:wintime
Window length in sec.
窗口长度,单位为秒。
参数:steptime
Step between successive windows in sec.
步骤之间以秒为单位的窗口。
参数:dither
Add offset to spectrum as if dither noise.
添加如果抖动噪声的频谱偏移。
值----------Value----------
Matrix, where each column represents a power spectrum for a given frame and each row represents a frequency.
矩阵,其中的每一列代表一个功率谱,对于一个给定的帧中,每一行代表一个频率。
(作者)----------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)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|