Free Access Week - Data Engineering + BI
Data Engineering and BI courses are free this week!
Free Access Week - Jun 2-8

simts (version 0.2.2)

arma_to_wv_app: ARMA process to WV Approximation

Description

This function computes the (haar) WV of an ARMA process

Usage

arma_to_wv_app(ar, ma, sigma2, tau, alpha = 0.9999)

Value

A vec containing the wavelet variance of the ARMA process.

Arguments

ar

A vec containing the coefficients of the AR process

ma

A vec containing the coefficients of the MA process

sigma2

A double containing the residual variance

tau

A vec containing the scales e.g. 2τ

alpha

A double indicating the cutoff.

Process Haar Wavelet Variance Formula

The Autoregressive Order p and Moving Average Order q (ARMA(p,q)) process has a Haar Wavelet Variance given by: τj[1ρ(τj2)]+2i=1τj21i[2ρ(τj2i)ρ(i)ρ(τji)]τj2σX2 where σX2 is given by the variance of the ARMA process. Furthermore, this assumes that stationarity has been achieved as it directly

Details

This function provides an approximation to the arma_to_wv as computation times were previously a concern. However, this is no longer the case and, thus, this has been left in for the curious soul to discover...