rmnoise(seewave)
rmnoise()所属R语言包:seewave
Remove noise
去除噪声
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function removes background noise by smoothing
此功能可去除背景噪声平滑
用法----------Usage----------
rmnoise(wave, f, 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,。
参数:output
character string, the class of the object to return, either "matrix", "Wave", "Sample", "audioSample" or "ts".
字符串,返回类的对象,是"matrix","Wave","Sample","audioSample"或"ts"。
参数:...
other smooth.spline arguments.
其他smooth.spline参数。
Details
详细信息----------Details----------
This function is based on smooth.spline. You can use the arguments of the later to modify the smoothing.
此函数是基于smooth.spline。您可以使用arguments后来的修改平滑。
值----------Value----------
A new wave is returned. The class
新一波返回。类
注意----------Note----------
Low frequency noise might not be removed out properly.
低频噪音可能不会被删除正确。
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a>
参见----------See Also----------
afilter, noisew
afilter,noisew
实例----------Examples----------
# synthesis of a 440 Hz sound with background noise[合成一个440赫兹的声音与背景噪音]
n <- noisew(d=1,f=8000)
s <- synth(d=1,f=8000,cf=440)
ns <- n+s
# remove noise (but low frequency content still there)[去除噪声(但低频的内容仍然存在)]
a <- rmnoise(ns,f=8000)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|