resamp(seewave)
resamp()所属R语言包:seewave
Resample a time wave
重新取样时间波
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function resamples (down- or over-samples) a time wave. This
此功能重新采样(向下或以上的α-样品)的时间波。这
用法----------Usage----------
resamp(wave, f, g, output="matrix")
参数----------Arguments----------
参数:wave
an R object.
R对象。
参数:f
sampling frequency of wave (in Hz). Does not need to be specified if embedded in wave.
wave(赫兹)的采样频率。不需要以指定如果嵌入在wave,。
参数:g
new sampling frequency of wave (in Hz).
新的采样频率wave(赫兹)。
参数:output
character string, the class of the object to return, either "matrix", "Wave", "Sample", "audioSample" or "ts".
字符串,返回类的对象,是"matrix","Wave","Sample","audioSample"或"ts"。
值----------Value----------
If plot is FALSE, a new wave is returned. The class
如果plotFALSE,新一波返回。类
注意----------Note----------
Resampling might change frequency properties of the time wave.
重采样可能会发生变化的时间波的频率特性。
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a>
实例----------Examples----------
data(peewit)
# downsampling[下采样]
a<-resamp(peewit,f=22050,g=11025)
# oversampling[过采样]
b<-resamp(peewit,f=22050,g=44100)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|