powered by
Uses psi-weights to compute the autocovariance matrices of a VARMA model
VARMAcov(Phi = NULL, Theta = NULL, Sigma = NULL, lag = 12, trun = 120)
A k-by-kp matrix consisting of VAR coefficient matrices, Phi = [Phi1, Phi2, ..., Phip].
A k-by-kq matrix consisting of VMA coefficient matrices, Theta = [Theta1, Theta2, ..., Thetaq]
Covariance matrix of the innovations (k-by-k).
Number of cross-covariance matrices to be computed. Default is 12.
The lags of pis-weights used in calculation. Default is 120.
Autocovariance matrices
Auto correlation matrices
Use psi-weight matrices to compute approximate autocovariance matrices of a VARMA model.
Tsay (2014, Chapter 3). Multivariate Time Series Analysis with R and Financial Applications. John Wiley. Hoboken, NJ.
# NOT RUN { Phi=matrix(c(0.2,-0.6,0.3,1.1),2,2) Sig=matrix(c(4,1,1,1),2,2) VARMAcov(Phi=Phi,Sigma=Sig) # }
Run the code above in your browser using DataLab