noisew(seewave)
noisew()所属R语言包:seewave
Generate noise
产生噪音
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function generates noise.
此功能会产生噪音。
用法----------Usage----------
noisew(f, d, type="unif", listen = FALSE, output = "matrix")
参数----------Arguments----------
参数:f
sampling frequency of the signal to be generated (in Hz)
要生成的信号的采样频率(单位Hz)
参数:d
duration of the signal to be generated.
要生成的信号的持续时间。
参数:type
a character string to specify the type of noise, either "unif" or "gaussian".
一个字符串指定类型的噪声,无论是“UNIF”或“高斯”。
参数:listen
if TRUE the new sound is played back.
如果TRUE新的声音回放。
参数:output
character string, the class of the object to return, either "matrix", "Wave", "Sample", "audioSample" or "ts".
字符串,返回类的对象,是"matrix","Wave","Sample","audioSample"或"ts"。
Details
详细信息----------Details----------
Uniform noise is generated using runif and gaussian noise is based on rnorm
统一产生噪音使用runif和高斯噪声的基础上rnorm
值----------Value----------
A new wave is returned. The class of the returned object is set with the argument output.
新一波返回。返回的对象的类设置的参数output。
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a>
参见----------See Also----------
synth, pulse
synth,pulse
实例----------Examples----------
# add noise to a synthetic signal[一种人工合成的信号噪音]
a<-noisew(d=1,f=8000)
b<-synth(f=8000,d=1,cf=2000,plot=FALSE)
c<-a+b
spectro(c,f=8000)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|