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, wherekis the number of variables.coef Numeric matrix. Coefficient matrix with dimensions
kby(k * p). Eachkbykblock corresponds to the coefficient matrix for a particular lag.cov Numeric matrix. The
kbykcovariance 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)
}