fund(seewave)
fund()所属R语言包:seewave
Fundamental frequency track
基本频率跟踪
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function tracks the fundamental frequency through a short-term cepstral transform.
此功能跟踪通过一个短期的倒频谱变换的基波频率。
用法----------Usage----------
from = NULL, to = NULL,
plot = TRUE, xlab = "Time (s)", ylab = "Frequency (kHz)",
参数----------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
if at is not null, length of the window for the analysis (even number of points, by defaults = 512).
如果at是不空的窗口,长度的分析(偶数点,默认值= 512)。
参数:ovlp
overlap between two successive windows (in %).
两个连续窗口(%)之间的重叠。
参数:fmax
the maximum frequency to detect (in Hz).
检测到的最大频率(单位为Hz)。
参数:threshold
amplitude threshold for signal detection (in %).
用于信号检测的幅度阈值(%)。
参数:from
start position where to compute the fundamental frequency (in s).
开始位置计算的基本频率(单位:秒)。
参数:to
end position to compute the fundamental frequency (in s).
结束位置来计算的基本频率(单位:s)。
参数:plot
logical, if TRUE plots the fundamental frequency modulations against time (by default TRUE).
逻辑,如果TRUE图的基本频率调制与时间(默认情况下TRUE)。
参数:xlab
title of the time axis (s).
标题时间轴()。
参数:ylab
title of the frequency axis (Hz).
在频率轴上的标题(赫兹)。
参数:ylim
the range of frequency values.
的范围内的频率值。
参数:pb
if TRUE returns a text progress bar in the console.
如果TRUE在控制台中返回一个文本进度条。
参数:...
other plot graphical parameters.
其他plot图形参数。
值----------Value----------
When plot is FALSE, fund 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,fund返回一个两列的矩阵,对应于时间(秒)(x-轴)和第二列的第一列对应于以kHz为单位的基本频率(参考NA Y轴)。暂停部分在wave(见threshold“)。
注意----------Note----------
This function is based on ceps.
此函数是基于ceps。
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a>.
参考文献----------References----------
to quefrency: a history of the cepstrum. Signal Processing Magazine IEEE,
参见----------See Also----------
cepstro, ceps, autoc
cepstro,ceps,autoc
实例----------Examples----------
data(sheep)
fund(sheep,f=8000,fmax=300,type="l")
# with 50% overlap between successive sliding windows, time zoom and [与连续的滑动窗口,时间缩放和50%之间的重叠]
# amplitude filter (threshold)[振幅滤波器(阈值)]
fund(sheep,f=8000,fmax=300,type="b",ovlp=50,threshold=5,ylim=c(0,1),cex=0.5)
# overlaid on a spectrogram[上重叠的谱图(spectrogram)的]
spectro(sheep,f=8000,ovlp=75,zp=16,scale=FALSE,palette=rev.gray.colors.2)
par(new=TRUE)
fund(sheep,f=8000,fmax=300,type="p",pch=24,ann=FALSE,
xaxs="i",yaxs="i",col="black",bg="red",threshold=6)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|