wavTransform(wmtsa)
wavTransform()所属R语言包:wmtsa
Constructor function for objects of class wavTransform
对象的构造函数的类wavTransform
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Packs input information regarding a discrete wavelet transform
关于离散小波变换的包输入信息
用法----------Usage----------
wavTransform(data, series, n.levels, dictionary, shifted, xform)
参数----------Arguments----------
参数:data
a list of vectors containing discrete wavelet transform coefficients.
含有离散小波变换系数的矢量的列表。
参数:series
a numeric vector or signalSeries object representing the input series.
一个数值向量或signalSeries对象,表示输入序列。
参数:n.levels
an integer denoting the number of decomposition levels.
一个整数,表示的分解级别的数目。
参数:dictionary
an object of class wavDictionary representing the wavelet dictionary of the transform.
类的一个对象wavDictionary代表小波字典的转换。
参数:shifted
a logical value. If TRUE, it signifies that the transform coefficients have already been shifted for approximate zero phase alignment.
一个逻辑值。如果TRUE,它表示的变换系数已经转变为近似零相位对齐。
参数:xform
a character string denoting the type of wavelet transform that has been performed. Typical values are "modwt" or "dwt".
一个字符的字符串,表示已执行小波变换的类型。典型值是"modwt"或"dwt"。
Details
详细信息----------Details----------
Used internally by the wavMODWT and wavDWT functions to package the transform contents into a list.
wavMODWT和wavDWT函数内部使用,打包转换成一个列表的内容。
值----------Value----------
an object of class wavTransform.
对象类wavTransform。
S3方法----------S3 METHODS----------
[ single level data access.
[单层次的数据访问。
Usage: x["d2"] or x[2]
用途:×[“d2的”]或x [2]
Access a subset of wavelet transform crystals.
进入小波变换晶体的一个子集。
[<- single level data replacement method.
[< - 单级数据的替代方法。
Usage: x["d2"] <- 1:4
用法:X“D2”] < - 1:4
Replace an entire crystal with explicitly defined coefficients.
更换整个晶体具有明确定义的系数。
[[ double level data access.
[双层次的数据访问。
Usage: x[["d2"]] or x[[2]]
用途:×[[“d2的”]]或x [[2]]
Returns a vector of transform coefficients corresponding to the specified crystal.
返回一个向量,变换系数对应于指定的晶体。
as.matrix transforms the list of wavelet transform coefficients into a single-column matrix whose row names identify the transform coefficient, e.g., d4(3) is the third coefficient of the d4 crystal (fourth level wavelet coefficients).
as.matrix变换成一个单一的列的矩阵的行名识别d4上(3)的变换系数,例如,是d4晶体的第三系数(第四级的小波系数)的小波变换系数的列表。
Usage: as.matrix(x)
用途:as.matrix(X)
boxplot plots a boxplot for each crystal in the discrete wavelet transform.
盒形图绘制盒形图的每个晶体的离散小波变换。
Usage: boxplot(x)
用途:盒状图(X)
eda.plot extended data analysis plot. A 2x2 grid of plots containing a stack plot, boxplot, and two energy related plots are shown.
eda.plot扩展数据分析图。图包含一个2x2的网格,堆栈图,箱线图,和两个与能源有关的图。
Usage: eda.plot(x)
用途:eda.plot(X)
plot plot a discrete wavelet transform. Usage: plot(x, type="h", plot.bar=TRUE, plot.pie=TRUE, add=FALSE, cex.main=ifelse1(is.R(),1,0.7), ...)
图图的离散小波变换。用途:图(X,类型=“H”,plot.bar = TRUE,plot.pie = TRUE,添加= FALSE,cex.main = ifelse1(is.R(),1,0.7),...)
xA wavTransform object.
XA wavTransform对象。
typeA character denoting the type of line plot to produce in a stack plot of the wavelet transform coefficients (see primary plot() function for details). If type is the character string "energy" an energy plot (bar or pie chart) is produced. Default: "h".
A型性格的折线图表示的类型产生的小波变换系数(见主要plot()函数的详细信息)堆栈中的图。如果类型是字符串"energy"的能量图(条形或饼图)。默认值:"h"。
plot.barA logical value. If TRUE and type="energy", a bar plot of crystal energy is plotted. Default: TRUE.
plot.barA逻辑值。如果TRUE和type="energy",水晶能量的条形图的绘制。默认值:TRUE。
plot.pieA logical value. If TRUE and type="energy", a pie chart of crystal energy is plotted. Default: FALSE.
plot.pieA逻辑值。如果TRUE和type="energy",水晶能量的饼图绘制。默认值:FALSE。
addA logical value. If TRUE, the plot is added to the current plot layout without a frame ejection. Default: FALSE.
ADDA逻辑值。如果TRUE,该图在当前图上的布局没有一帧喷射。默认值:FALSE。
...Additional arguments to be sent to the stackplot routine.
要发送的其他参数的stackplot程序。
printprint the wavelet transform object. Usage: print(x)
printprint小波变换的对象。用途:打印(X)
reconstruct reconstruct/synthesize/invert the wavelet transform. Usage: reconstruct(x)
重建重建/合成/反转的小波变换。用途:重建(X)
If the transform coefficients were not modified, the original time series will be returned (+/- some numerical noise).
如果没有被修改的变换系数,将原来的时间序列返回(+ / - 一些数值的噪声)。
summaryprovide a statistical summary of the wavelet transform object. Usage: z <- summary(x); print(z)
summaryprovide的统计结果,小波变换的对象。用法:Z < - 摘要(X),打印(Z)
wavStackPlotstack plot of the wavelet transform. Usage: wavStackPlot(x)
wavStackPlotstack图的小波变换。用途:wavStackPlot(X)
参见----------See Also----------
实例----------Examples----------
## calculate a MODWT of the sunpots series and [计算MODWT的sunpots系列和]
## verify the class [#验证类]
W <- wavMODWT(sunspots)
print(class(W))
## summarize the object [#总结的对象]
summary(W)
## reconstruct the MODWT of the sunspots series [#重建的MODWT,太阳黑子系列]
## and compare to the original [#与比较到原始]
sunup <- reconstruct(W)
vecnorm(sunup - sunspots)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|