Perform whole wavelet cross-validation in C code. This
routine equivalent to CWCV
except that
more preparatory material is passed to C code for speed.
The major difference is that only the cross-validated wavelet threshold is returned.
FullWaveletCV(noisy, ll = 3, type = "soft", filter.number = 10, family =
"DaubLeAsymm", tol = 0.01, verbose = 0)
The cross-validated wavelet threshold.
A vector of dyadic (power of two) length that contains the noisy data that you wish to apply wavelet shrinkage by cross-validation to.
The primary resolution that you wish to assume. No wavelet coefficients that are on coarser scales than ll will be thresholded.
this option specifies the thresholding type which can be "hard" or "soft".
This selects the smoothness of wavelet that you want to perform wavelet shrinkage by cross-validation.
specifies the family of wavelets that you want to use. The options are "DaubExPhase" and "DaubLeAsymm".
this specifies the convergence tolerance for the cross-validation optimization routine (a golden section search).
Controls the printing of "informative" messages whilst the computations progress. Such messages are generally annoying so it is turned off by default.
G P Nason
Description says all
CWCV