Q(seewave)
Q()所属R语言包:seewave
Resonance quality factor of a frequency spectrum
共振的频率频谱的品质因数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function estimates the frequency pureness of a time wave by returning the resonant
这个函数估计的频率纯度的时间波通过返回的共振,
用法----------Usage----------
Q(spec, f = NULL, level = -3, plot = TRUE, colval = "red",
cexval = 1, fontval = 1, flab = "Frequency (kHz)",
alab = "Relative amplitude (dB)", type = "l", ...)
参数----------Arguments----------
参数:spec
a data set resulting of a spectral analysis obtained with spec, or meanspec (in dB). This can be either a two-column matrix (col1 = frequency, col2 = amplitude) or a vector (amplitude).
一组数据产生的频谱分析得到的spec或meanspec(以dB为单位)。这可以是一个两列的矩阵(col1的=频率,col2上=振幅),或一个矢量(振幅)。
参数:f
sampling frequency of the wave used to obtain spec (in Hz). Not necessary if spec is a two columns matrix obtained with spec or meanspec.
用于获得spec(以Hz为单位)的波的采样频率。没有必要的,如果spec是一个两列的矩阵得到spec或meanspec。
参数:level
frequency bandwidth set by an amplitude value relative to spectrum (in dB).
频率带宽的幅度相对值spectrum(以dB为单位)。
参数:plot
logical, if TRUE returns the spectrum with Q plotted (by default TRUE).
逻辑,如果TRUE返回谱绘制与Q(默认情况下,“TRUE”)。
参数:colval
colour of plotting Q.
颜色绘制Q.
参数:cexval
character size of plotting Q.
字符大小绘制Q.
参数:fontval
font of plotting Q.
字体绘制Q.
参数:flab
title of the frequency axis.
在频率轴上的标题。
参数:alab
title of the amplitude axis.
标题的振幅轴。
参数:type
if plot is TRUE, type of plot that should be drawn. See plot for details (by default "l" for lines).
如果plot是TRUE,应该得出的图。见plot的详细信息(默认情况下,“L”线)。
参数:...
other plot graphical parameters.
其他plot图形参数。
Details
详细信息----------Details----------
A high Q value indicates a highly resonant system.
高Q值表示一个高谐振系统。
值----------Value----------
A list is returned with the following four items:
返回一个列表有以下四个项目:
参数:Q
a numeric vector of length 1 returning the Q factor (no units)
一个数值向量的长度为1的Q因子返回(无单位)
参数:dfreq
a numeric vector of length 1 the dominant frequency (kHz)
一个数值向量的长度为1的主频率(千赫)
参数:fmin
a numeric vector of length 1 returning the minimum frequency of the -dB level bandwidth (kHz)
一个数值向量的长度为1-dB水平带宽的最小频率(千赫返回)
参数:fmax
a numeric vector of length 1 returning the minimum frequency of the -dB level bandwidth (kHz)
一个数值向量的长度为1-dB水平带宽的最小频率(千赫返回)
参数:bwd
a numeric vector of length 1 returning the bandwidth, i. e. fmax-fmin (kHz)
返回一个数值向量的长度为1的带宽,。 E。 fmax-fmin(千赫)
注意----------Note----------
This function is based on fft.
此函数是基于fft。
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a>
参见----------See Also----------
spec, meanspec, corspec,
spec,meanspec,corspec,
实例----------Examples----------
# bird song[鸟歌]
data(tico)
t<-spec(tico,f=22050,at=1.1,plot=FALSE,dB="max0")
op<-par(mfrow=c(2,1),las=1)
Q(t,type="l")
Q(t,type="l",xlim=c(3.8,4.2),ylim=c(-60,0))
title("zoom in")
par(op)
# cricket, changing the dB level[板球,改变的分贝水平]
data(pellucens)
p<-spec(pellucens,f=11025,at=0.5,plot=FALSE,dB="max0")
op<-par(mfrow=c(3,1))
Q(p,type="l",xlim=c(1.8,2.6),ylim=c(-70,0))
title("level = - 3 (default value)",col.main="red")
Q(p,type="l",level=-6,
xlim=c(1.8,2.6),ylim=c(-70,0),colval="blue")
title("level = - 6",col.main="blue")
Q(p,type="l",level=-9,
xlim=c(1.8,2.6),ylim=c(-70,0),colval="green")
title("level = - 9",col.main="green")
par(op)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|