View source: R/generateParams.R
random_covmat | R Documentation |
random_covmat
generates random VAR model (dxd)
error term covariance matrix \Omega
from (scaled) Wishart distribution for reduced form models and the parameters W
,\lambda_1,...,\lambda_M
for structural models (from normal distributions).
random_covmat(d, M, omega_scale, W_scale, lambda_scale, structural_pars = NULL)
d |
the number of time series in the system. |
M |
|
omega_scale |
a size |
W_scale |
a size |
lambda_scale |
a length If the lambda parameters are constrained with the This argument is ignored if As with omega_scale and W_scale, this argument should be adjusted carefully if specified by hand. NOTE that if lambdas are constrained in some other way than restricting some of them to be identical, this parameter should be adjusted accordingly in order to the estimation succeed! |
structural_pars |
If
See Virolainen (forthcoming) for the conditions required to identify the shocks and for the B-matrix as well (it is |
Note that for StMVAR type regimes, the error term covariance matrix is consists of an ARCH type scalar that multiplies a constant covariance matrix. This function generates the constant covariance matrix part of the error term covariance matrix.
Returns a (d(d+1)/2x1)
vector containing vech-vectorized covariance matrix
\Omega
.
Returns a length d^2 - n_zeros - d*(M - 1)
vector of the form
(Wvec(W),\lambda_2,...,\lambda_M)
where \lambda_m=(\lambda_{m1},...,\lambda_{md})
contains the eigenvalue parameters of the m
th regime (m>1)
and n_zeros
is the number of zero constraints
in W
. If lambdas are C_lambda
constrained, replace d*(M - 1)
in the length with r
and
\lambda_2,...,\lambda_M)
with \gamma
. If fixed_lambdas
are used, the \lambda_{mi}
parameters
are not included. The operator Wvec()
vectorizes a matrix and removes zeros.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.