cepstro(seewave)
cepstro()所属R语言包:seewave
2D-cepstrogram of a time wave
2D-cepstrogram的时间波
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function returns a two-dimension cepstrographic representation of a time wave. The function corresponds to a short-term cepstral transform.
这个函数返回的时间波的一个二维cepstrographic表示。该功能对应于一个短期的倒谱变换。
用法----------Usage----------
cepstro(wave, f, wl = 512, ovlp = 0, plot = TRUE, grid = TRUE,
scale = TRUE, cont = FALSE, collevels = seq(0, 1, 0.01),
palette = rev.heat.colors, contlevels = seq(0, 1, 0.01),
colcont = "black", colbg="white", colgrid = "black",
colaxis = "black", collab = "black",
xlab = "Time (s)", ylab = "Quefrency (ms)",
scalelab = "Amplitude", main = NULL, scalefontlab = 1, scalecexlab = 0.75,
axisX = TRUE, axisY = TRUE, ...)
参数----------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 %).
两个连续窗口(%)之间的重叠。
参数:plot
logical, if TRUE plots the cepstrogram (by default TRUE).
逻辑,如果TRUE图cepstrogram(默认情况下,TRUE)。
参数:grid
logical, if TRUE plots a y-axis grid (by default TRUE).
逻辑,如果TRUE图y轴网格(默认情况下TRUE)。
参数:scale
logical, if TRUE plots a dB colour scale on the right side of the cesptrogram (by default TRUE).
逻辑,如果TRUE图的dB的颜色刻度在右侧的cesptrogram(默认情况下,TRUE)。
参数:cont
logical, if TRUE overplots contour lines on the cepstrogram (by default FALSE).
逻辑,如果TRUEoverplots轮廓线的cepstrogram(默认情况下,FALSE)。
参数:collevels
a set of levels which are used to partition the amplitude range of the cepstrogram (in dB).
一组用于分区的cepstrogram(以dB为单位)的幅度范围的水平。
参数:palette
a color palette function to be used to assign colors in the plot, see Details.
调色板功能,可用于指定颜色的图,请参阅Details。
参数:contlevels
a set of levels which are used to partition the amplitude range for contour overplot (in dB).
一组用于分区轮廓overplot(以dB为单位)的振幅范围的水平。
参数:colcont
colour for cont plotting.
cont绘制的颜色。
参数:colbg
background colour.
背景颜色。
参数:colgrid
colour for grid plotting.
grid绘制的颜色。
参数:colaxis
color of the axes.
轴的颜色。
参数:collab
color of the labels.
颜色的标签。
参数:xlab
label of the time axis.
时间轴标签。
参数:ylab
label of the quefrency axis.
的逆频轴的标签。
参数:main
label of the main title.
主标题的标签。
参数:scalelab
amplitude scale label.
振幅刻度标签。
参数:scalefontlab
font of the amplitude scale label.
振幅刻度标签的字体。
参数:scalecexlab
cex of the amplitude scale label.
CEX的幅度比例标签。
参数:axisX
if TRUE plots time X-axis (by default TRUE).
如果TRUE图X-轴(默认情况下TRUE)。
参数:axisY
if TRUE plots frequency Y-axis (by default TRUE).
如果TRUE图频Y-轴(默认情况下TRUE)。
参数:...
other contour graphical parameters.
其他contour图形参数。
Details
详细信息----------Details----------
It is unfortunately not possible to turn the y-axis to a frequency scale.<br> See spectro for the use of the graphical arguments.
不幸的是,不可能将y轴的频率规模。<br>查看spectro使用的图形参数。
值----------Value----------
This function returns a list of three items:
该函数返回一个列表的三个项目:
参数:time
a numeric vector corresponding to the time axis.
一个数值向量对应于时间轴。
参数:freq
a numeric vector corresponding to the quefrency axis.
一个数值向量对应的逆频轴。
参数:amp
a numeric matrix corresponding to the the successive cepstral profiles computed along time.
一个数字矩阵对应的连续倒谱系轮廓沿着时间计算。
注意----------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----------
ceps, fund, autoc
ceps,fund,autoc
实例----------Examples----------
data(sheep)
sheepc <- cutw(sheep, f=8000, from = 0.19, to = 2.3)
cepstro(sheepc,f=8000)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|