autoc(seewave)
autoc()所属R语言包:seewave
Short-term autocorrelation of a time wave
短期自相关的时间波
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function returns the fundamental frequency of a harmonic time wave. This is achieved by computing a correlation of the signal with itself after a time delay.
此函数返回的基本频率的高次谐波的时间波形。这是通过计算与自身的相关性的信号延迟一段时间后。
用法----------Usage----------
autoc(wave, f, wl = 512, fmin, fmax, threshold = NULL, plot = TRUE,
xlab = "Time (s)", ylab = "Frequency (kHz)", ylim = c(0, f/2000), pb =
FALSE, ...)
参数----------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,。
参数:wl
length of the window for the analysis (even number of points, by default = 512).
长度的窗口分析(偶数点,默认值= 512)。
参数:fmin
the minimum frequency to detect (in Hz). See details.
检测到的最小频率(单位为Hz)。查看详细信息。
参数:fmax
the maximum frequency to detect (in Hz). See details
检测到的最大频率(单位为Hz)。查看详细资料
参数:threshold
amplitude threshold for signal detection (in %).
用于信号检测的幅度阈值(%)。
参数:plot
logical, if TRUE plots the fundamental frequency against time (by default TRUE).
逻辑,如果TRUE图的基本频率和时间(默认情况下,TRUE)。
参数:xlab
title of the x-axis.
的x-轴的标题。
参数:ylab
title of the y-axis.
y-轴的标题。
参数:ylim
the range of y values.
y的值的范围内。
参数:pb
if TRUE returns a text progress bar in the console.
如果TRUE在控制台中返回一个文本进度条。
参数:...
other plot graphical parameters.
其他plot图形参数。
Details
详细信息----------Details----------
'fmin' and 'fmax' can help by reducing computing time but can
FMIN“和”FMAX可以帮助减少计算时间,但可以
值----------Value----------
When plot is FALSE, autoc returns a two-column matrix, the first column corresponding to time in seconds (x-axis) and the second column corresponding to to fundamental frequency in kHz (y-axis).<br> NA corresponds to pause sections in wave (see threshold).
当plot是FALSE,autoc返回一个两列的矩阵,对应于时间(秒)(x-轴)和第二列的第一列对应于以kHz为单位的基本频率(参考NA Y轴)。暂停部分在wave(见threshold“)。
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a> and
Thierry Aubin <a href="mailto:thierry.aubin@u-psud.fr">thierry.aubin@u-psud.fr</a>
参考文献----------References----------
参见----------See Also----------
ceps, acf
ceps,acf
实例----------Examples----------
data(sheep)
# fundamental frequency of a sheep[羊的基波频率]
res <- autoc(sheep, f=8000, threshold=5, fmin=100, fmax=700, plot=FALSE)
spectro(sheep, f=8000, ovlp=75, scale=FALSE)
points(res, pch=20)
legend(0.5, 3.6, "Fundamental frequency", pch=20, bty=0, cex=0.7)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|