env(seewave)
env()所属R语言包:seewave
Amplitude envelope of a time wave
一时间波的振幅包络线
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function returns the absolute or Hilbert
这个函数返回的绝对或希尔伯特
用法----------Usage----------
参数----------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,。
参数:envt
the type of envelope to be returned: either "abs" for absolute amplitude envelope or "hil" for Hilbert amplitude envelope. See Details section.
要返回的信封类型:要么是“ABS”或“白介素”的Hilbert振幅包络线的绝对振幅包络。见详图。
参数:msmooth
a vector of length 2 to smooth the amplitude envelope 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 examples.
一个向量的长度为2至平滑,平均滑动窗口的振幅包络线。第一组分是窗的长度(点的数量)。第二个组件是连续窗口(%)之间的重叠部分。见的例子。
参数:ksmooth
kernel smooth via kernel. See examples.
内核顺利通过kernel。见的例子。
参数:ssmooth
sum smooth.
总结顺利。
参数:norm
a logical, if TRUE the amplitude of the envelope is normalised between 0 and 1.
一个逻辑,如果TRUE的包络线的振幅的归一化在0和1之间。
参数:plot
logical, if TRUE returns a plot of wave envelope (by default TRUE).
逻辑,TRUE如果返回一个图wave信封(默认情况下TRUE)。
参数:k
number of horizontal sections when plot is TRUE (by default =1).
水平段数plot是TRUE(默认值= 1)。
参数:j
number of vertical sections when plot is TRUE (by default =1).
垂直剖面的数量时plot是TRUE(默认值= 1)。
参数:...
other oscillo graphical parameters.
其他oscillo图形参数。
Details
详细信息----------Details----------
When envt is set as "abs", the amplitude envelope returned is the absolute value of wave.<br> When envt is set as "hil", the amplitude envelope returned is the modulus (Mod) of the analytical signal of wave obtained through the Hilbert transform (hilbert).
当envt被设置为“绝对值”,返回的振幅包络线的绝对值wave<br>当envt被设置为“HIL”,返回的幅度包络的弹性模量(Mod)wave通过希尔伯特变换(hilbert)得到的分析信号。
值----------Value----------
Data are returned as one-column matrix when plot is FALSE.
一列的矩阵,当plot是FALSE,返回的数据。
注意----------Note----------
Be aware that smoothing with either msmooth or ksmooth
请注意,平滑的是msmooth或ksmooth
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a>
参见----------See Also----------
oscillo,hilbert
oscillo,hilbert
实例----------Examples----------
data(tico)
# Hilbert amplitude envelope[希尔伯特振幅包络线]
env(tico,f=22050)
# absolute amplitude envelope[绝对振幅包络线]
env(tico,f=22050,envt="abs")
# smoothing with a 10 points and 50% overlaping mean sliding window[平滑用10点和50%的交集的意思是滑动窗口]
env(tico,f=22050,msmooth=c(10,50))
# smoothing kernel[平滑核]
env(tico,f=22050,ksmooth=kernel("daniell",10))
# sum smooth[总结平滑]
env(tico,f=22050,ssmooth=50)
# overplot of oscillographic and envelope representations[overplot示波和信封陈述]
oscillo(tico,f=22050)
par(new=TRUE)
env(tico,f=22050,colwave=2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|