diffwave(seewave)
diffwave()所属R语言包:seewave
Difference between two time waves
两个时间波之间的差异
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function estimates the difference between two waves by computing the product between envelope surface difference and frequency surface difference.
此函数估计两个波之间的差通过计算包络面之间的差和频率表面高低差的产品。
用法----------Usage----------
diffwave(wave1, wave2, f, wl = 512, envt = "hil",
msmooth = NULL, ksmooth = NULL)
参数----------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,。
参数:wl
window length for spectral analysis (even number of points).
用于频谱分析的窗口长度(偶数的点)。
参数:envt
the type of envelope to be used: either "abs" for absolute amplitude envelope or "hil" for Hilbert amplitude envelope. See env.
要使用的信封类型:要么是“ABS”或“白介素”的Hilbert振幅包络线的绝对振幅包络。见env。
参数: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 env.
一个向量的长度为2至平滑,平均滑动窗口的振幅包络线。第一组分是窗的长度(点的数量)。第二个组件是连续窗口(%)之间的重叠部分。见env。
参数:ksmooth
kernel smooth via kernel. See env.
内核顺利通过kernel。见env。
Details
详细信息----------Details----------
This function computes the product between the values obtained with diffspec and diffenv functions. <br> This then gives a global (time and frequency) estimation of dissimilarity.<br> The frequency mean spectrum and the amplitude envelope needed for computing respectively diffspec and diffenv are automatically generated. They can be controlled through wl, msmooth and ksmooth arguments respectively.<br> See examples below and examples in diffspec and diffenv
此函数计算diffspec和diffenv函数获得的值之间的产品。参考这就给出了一个全球性的(时间和频率)估计相异。<BR>的的频率意思是光谱和振幅包络线,需要分别计算diffspec和diffenv是自动生成的。他们可以通过控制wl,msmooth和ksmooth参数分别。<BR>见下面的例子和示例diffspec和diffenv
值----------Value----------
A single value varying between 0 and 1 is returned.
返回一个单一的值,该值在0和1之间变化。
注意----------Note----------
This method can be used as a relative distance estimation
此方法可以用来作为一个相对距离估计
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a>
参考文献----------References----------
参见----------See Also----------
diffspec, diffenv
diffspec,diffenv
实例----------Examples----------
data(tico) ; tico <- tico@left
data(orni) ; orni <- orni@left
# selection in tico to have two waves of similar duration (length)[选择天工有两波类似的持续时间(长度)]
tico <- tico[1:length(orni)]
diffwave(tico,orni,f=22050)
# changing the frequency parameter (wl)[改变频率参数(WL)]
diffwave(tico,orni,f=22050,wl=1024)
# changing the temporal parameter (msmooth)[改变的时间参数(网格平滑)]
diffwave(tico,orni,f=22050,msmooth=c(20,0))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|