wvcov | R Documentation |
Places the Asymptotic Covariance Matrix in print form.
wvcov(signal.modwt, signal.wvar, compute.v = "diag")
signal.modwt |
A |
signal.wvar |
A |
compute.v |
A |
A list
with the structure:
Covariance Matrix
Covariance Matrix
Level of decomposition J
Type of Covariance Matrix
Robust active
Efficiency level for Robust
Tau scales (2^(1:J))
Empirical Wavelet Variance
JJB
set.seed(999)
x = rnorm(100)
decomp = modwt(x)
wv = wvar(x)
out = wvcov(decomp, wv, compute.v="diag")
# Robust
decomp = modwt(x)
wv = wvar(x, robust = TRUE)
out = wvcov(decomp, wv, compute.v="diag")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.