wave_variance: Generate a Wave Variance for a Univariate Time Series

Description Usage Arguments Value Examples

Description

Computes an estimate of the wave variance

Usage

1
wave_variance(signal_modwt_bw, robust = FALSE, eff = 0.6)

Arguments

signal_modwt_bw

A field<vec> that contains the brick walled modwt or dwt decomposition

robust

A boolean to determine the type of wave estimation.

eff

A double that indicates the efficiency.

Value

A vec that contains the wave variance.

Examples

1
2
3
4
5
6
set.seed(1337)
x = rnorm(100)
decomp = modwt_cpp(x, filter_name = "haar", nlevels = 4, boundary = "periodic", brickwall = TRUE)
wave_variance(decomp)

wave_variance(decomp, robust = TRUE, eff = 0.6)

gmwm documentation built on April 14, 2017, 4:38 p.m.