wvcov: Calculate the Asymptotic Covariance Matrix

Description Usage Arguments Value Author(s) Examples

View source: R/wvcov.R

Description

Places the Asymptotic Covariance Matrix in print form.

Usage

1
wvcov(signal.modwt, signal.wvar, compute.v = "diag")

Arguments

signal.modwt

A modwt object that contains the modwt decomposition.

signal.wvar

A wvar object that contains the wavelet variance.

compute.v

A string that indicates the type of covariance matrix to compute. Supports: "diag"

Value

A list with the structure:

"V"

Covariance Matrix

"V.r"

Covariance Matrix

"nlevels"

Level of decomposition J

"compute.v"

Type of Covariance Matrix

"robust"

Robust active

"eff"

Efficiency level for Robust

"scales"

Tau scales (2^(1:J))

"wv.empir"

Empirical Wavelet Variance

Author(s)

JJB

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
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")

SMAC-Group/gmwm documentation built on Sept. 11, 2021, 10:06 a.m.