arma11_to_wv | R Documentation |
This function computes the WV (haar) of an Autoregressive Order 1 - Moving Average Order 1 (ARMA(1,1)) process.
arma11_to_wv(phi, theta, sigma2, tau)
phi |
A |
theta |
A |
sigma2 |
A |
tau |
A |
This function is significantly faster than its generalized counter part
arma_to_wv
A vec
containing the wavelet variance of the ARMA(1,1) process.
The Autoregressive Order 1 and Moving Average Order 1 (ARMA(1,1)) process has a Haar Wavelet Variance given by:
nu[j]^2 (phi, theta, sigma2) = (-2*sigma2*((-(theta + phi))*(1 + theta*phi)*(3 - 4*phi^(tau[j]/2) + phi^tau[j]) - 0.5*(1 + theta)^2*(-1 + phi^2)*tau[j])) / ((-1 + phi)^3*(1 + phi)*tau[j]^2)
For more information, please see: Supported Haar Wavelet Formulae (Internet Connection Required).
arma_to_wv
ntau = 7 tau = 2^(1:ntau) wv.theo = arma11_to_wv(0.3, 0.1, 1, tau)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.