setenv(seewave)
setenv()所属R语言包:seewave
Set the amplitude envelope of a time wave to another one
设置的时间波的振幅包络线到另一个
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function sets the amplitude envelope of a time wave
该函数设置的时间波的振幅包络线
用法----------Usage----------
plot = FALSE, listen = FALSE, output = "matrix", ...)
参数----------Arguments----------
参数:wave1
a first R object.
第一个R对象。
参数:wave2
a second R object.
第二个R对象。
参数:f
sampling frequency of wave (in Hz). Does not need to be specified if embedded in wave.
wave(赫兹)的采样频率。不需要以指定如果嵌入在wave,。
参数:envt
the type of envelope to be used for wave2: either "abs" for absolute amplitude envelope or "hil" for Hilbert amplitude envelope. See env.
信封的类型被用于wave2:要么“绝对值”绝对幅度包络或希尔伯特幅度包络的“HIL”。见env。
参数:msmooth
a vector of length 2 to smooth the amplitude envelope of wave2 with a mean sliding window. The first component is the window length (in number of points). The second component is the overlap between successive windows (in %). See env.
平滑的振幅包络线的矢量的长度为2的平均滑动窗口wave2。第一组分是窗的长度(点的数量)。第二个组件是连续窗口(%)之间的重叠部分。见env。
参数:ksmooth
kernel smooth via kernel to apply to the amplitude envelope ofwave2. See env.
内核顺利通过kernel适用于振幅包络线wave2。见env。
参数:plot
if TRUE returns the oscillogram of the new time wave (by default FALSE).
TRUE如果返回新的时间波的波形图(默认情况下FALSE“)。
参数: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"。
参数:...
other oscillo graphical parameters.
其他oscillo图形参数。
Details
详细信息----------Details----------
wave1 and wave2 can have different duration (length)<br> Smoothing the envelope with smooth or ksmooth can significantly
wave1和wave2可以有不同的持续时间(长度)参考smooth或ksmooth可以显着平滑的包络
值----------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----------
drawenv, env, synth
drawenv,env,synth
实例----------Examples----------
data(tico)
a<-synth(d=1,f=22050,cf=1000)
# apply 'tico' ammplitude envelope to 'a' that has a square amplitude envelope[适用于“天工”ammplitude信封为a,有一个方形的振幅包络线]
setenv(a,tico,f=22050,plot=TRUE)
# the same but with smoothing the envelope[相同的,但具有平滑的包络]
setenv(a,tico,f=22050,ksmooth=kernel("daniell",50),plot=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|