View source: R/waveTransform.R
WaveTransCoefs | R Documentation |
Performs a separable two-dimensional discrete wavelet transform (DWT) on a matrix of dyadic dimensions. Applying indicated thresholds.
WaveTransCoefs(x, wf = "d4", J = 4, thresholdMethod = NULL, tau = NULL)
x |
length D^2 vector, vectorized matrix for DWT |
wf |
name of the wavelet filter to use |
J |
depth of the wavelet basis decomposition, must be a number less than or equal to log(min(M,N),2) |
thresholdMethod |
wavelet shrinkage method used "hybrid" thresholding or "manual" thresholding, see "details" |
tau |
constant threshold when using manual thresholding |
The coefficients after wavelet thresformation and thresholding is a list structure
containing the 3J+1 sub-matrices from the decomposition. The coef
is the vectorized
coefficients.
The "hybrid" thresholding combined the SURE and universal thresholds. The manual thresholding set a constant threshold. see Section 3.2 in references.
a tibble
with two columns, level
and coef
, see details
G. P. Nason. Wavelet methods in statistics with R. Springer, 2008.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.