Auto and Cross Regression Coeffcients
Usage
# S3 method for dynr_model
coef(object, dynr_cook, ...)
Arguments
- object
Object of class
dynr_model
.- dynr_cook
Ouput of
FitVARDynr()
.- ...
additional arguments.
Value
A list with the following elements:
constant Numeric vector. The constant term vector of length
k
, wherek
is the number of variables.coef Numeric matrix. Coefficient matrix with dimensions
k
by(k * p)
. Eachk
byk
block corresponds to the coefficient matrix for a particular lag.cov Numeric matrix. The
k
byk
covariance matrix of the noise.
Examples
if (FALSE) {
dynr_model <- ModelVARP2Dynr(data = dat_p2)
dynr_cook <- FitVARP2Dynr(model = dynr_model)
coef(object = dynr_model, dynr_cook = dynr_cook)
}