accessC.wst(wavethresh)
accessC.wst()所属R语言包:wavethresh
Get smoothed data from packet ordered non-decimated wavelet object (wst)
平滑后的数据包下令非抽取小波对象(WST)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The smoothed data from a packet ordered non-decimated wavelet object (returned from wst) are stored in a matrix. This function extracts all the coefficients corresponding to a particular resolution level.
从一个数据包中的平滑化数据下令非抽取小波对象(从wst)被存储在一个矩阵中返回。此函数提取的所有的系数对应于一个特定的分辨率等级。
用法----------Usage----------
## S3 method for class 'wst':
accessC(wst, level, aspect, ...)
参数----------Arguments----------
参数:wst
Packet ordered non-decimated wavelet object from which you wish to extract the smoothed or original data (if the object is directly from a packet ordered non-decimated wavelet transform of some data).
包下令非抽取小波对象,该对象要提取的平滑或原始数据(如果对象是直接从订购一包非抽取小波变换的一些数据)。
参数:level
The level that you wish to extract. This can range from zero (the coarsest coefficients) to nlevels(wstobj) which returns the original data.
的水平,你要提取。这可以从零(粗的系数)来NLEVELS(wstobj),它返回原来的数据的范围。
参数:aspect
Applies function to coefficients before return. Supplied as a character string which gets converted to a function. For example "Mod" which returns the absolute values of the coefficients
适用于函数返回前系数。提供一个功能被转换为一个字符串。例如,“管理员”,返回系数的绝对值
参数:...
Other arguments
其他参数
Details
详细信息----------Details----------
The wst function performs a packet-ordered non-decimated wavelet transform. This function extracts all the father wavelet coefficients at a particular resolution level specified by level.
wst函数执行的数据包排序的非抽取小波变换。此功能在一个特定的分辨率级别指定的level提取所有的父亲小波系数。
Note that coefficients returned by this function are in emphpacket order. They can be used as is but for many applications it might be more useful to deal with the coefficients in packets: see the function getpacket.wst for further details.
请注意,由这个函数返回的系数是在emphpacket秩序。他们可以直接使用,但对于许多应用程序,它可能是更有益的处理数据包中的系数:功能getpacket.wst的进一步详情。
值----------Value----------
A vector of the extracted data.
所提取的数据的向量。
(作者)----------Author(s)----------
G P Nason
参考文献----------References----------
Nason, G. P. and Silverman, B. W. (1994). The discrete wavelet transform in S. Journal of Computational and Graphical Statistics, 3, 163–191.
参见----------See Also----------
wst, wst.object, accessC, getpacket.wst
wst,wst.object,accessC,getpacket.wst
实例----------Examples----------
#[]
# Get the 3rd level of smoothed data from a decomposition[第3级平滑后的数据分解]
#[]
dat <- rnorm(64)
accessC(wst(dat), level=3)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|