deletew(seewave)
deletew()所属R语言包:seewave
Delete a section of a time wave
删除的时间段波
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function selects and delete a section of data describing a time wave. Original section and section after deletion can be plotted as oscillograms for comparison.
该功能选择和删除部分的数据描述了时间波。原始的部分和部分删除后可以绘制成波形进行比较。
用法----------Usage----------
deletew(wave, f, from = NULL, to = NULL, choose = FALSE, plot = FALSE,
marks = TRUE, 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。
参数:from
start position (in s).
开始位置(单位:秒)。
参数:to
end position (in s).
结束位置(单位:秒)。
参数:choose
logical, if TRUE start (=from) and end (=to) points can be graphically chosen with a cursor on the oscillogram.
逻辑,如果TRUE开始(=from)和结束(=to)可以图形的波形图上的光标选择点。
参数:plot
logical, if TRUE returns an oscillographic plot of original and cut sections (by default FALSE).
逻辑,如果TRUE返回示波图,原来和切割部件(默认情况下,FALSE)。
参数:marks
logical, if TRUE shows the start and end mark on the plot (by default TRUE).
逻辑,如果TRUE的开始和结束标记在图上(默认情况下TRUE)。
参数:output
character string, the class of the object to return, either "matrix", "Wave", "Sample", "audioSample" or "ts".
字符串,返回的类的对象,无论是“矩阵”,“波”,“样本”,“audioSample”或“TS”。
参数:...
other oscillo graphical parameters.
其他oscillo图形参数。
Details
详细信息----------Details----------
If plot is TRUE returns a two-frame plot with both
如果plotTRUE返回两个两帧图
值----------Value----------
If plot is FALSE, a new wave is returned. The class
如果plotFALSE,新一波返回。类
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a>
参见----------See Also----------
oscillo, addsilw,cutw, fadew, mutew, pastew,
oscillo,addsilw,cutw,fadew,mutew,pastew,
实例----------Examples----------
# deletion a 0.4 s section in a bird song[删除一个0.4秒的鸟鸣部分]
data(tico)
a<-deletew(tico,f=22050,from=0.5,to=0.9)
oscillo(a,22050)
# a direct way to see what has been cut[一个直接的方式已被切断]
deletew(tico,f=22050,from=0.5,to=0.9,plot=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|