search for: zdet

Displaying 1 result from an estimated 1 matches for "zdet".

Did you mean: det
2012 Nov 21
0
Question about VAR (Vector Autoregression) in differences.
...object$K p <- object$p obs <- object$obs type <- object$type data.all <- object$datamat ynames <- colnames(object$y) n.ahead <- as.integer(n.ahead) Z <- object$datamat[, -c(1:K)] B <- Bcoef(object) if (type == "const") { Zdet <- matrix(rep(1, n.ahead), nrow = n.ahead, ncol = 1) colnames(Zdet) <- "const" } else if (type == "trend") { trdstart <- nrow(Z) + 1 + p Zdet <- matrix(seq(trdstart, length = n.ahead), nrow = n.ahead, ncol = 1) coln...