diff options
author | Suraj Yerramilli | 2016-01-07 16:46:15 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2016-01-07 16:46:15 +0530 |
commit | 56b4f89e47dca389da06e7926527bbfae0a58d3b (patch) | |
tree | 1e0308a6b564c9788d41585303a30dc9d3108463 /R | |
parent | 74beaa04179840133b06f30815bc5538fba85596 (diff) | |
download | SysID-R-code-56b4f89e47dca389da06e7926527bbfae0a58d3b.tar.gz SysID-R-code-56b4f89e47dca389da06e7926527bbfae0a58d3b.tar.bz2 SysID-R-code-56b4f89e47dca389da06e7926527bbfae0a58d3b.zip |
added reference for predict
Diffstat (limited to 'R')
-rw-r--r-- | R/predict.R | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/R/predict.R b/R/predict.R index 835d18a..37e17c2 100644 --- a/R/predict.R +++ b/R/predict.R @@ -56,7 +56,9 @@ polyinv <- function(x,k){ #' Yhat_2 <- predict(mod1,data,nahead=2) # 2-step ahead predictions #' Yhat_inf <- predict(mod1,data,nahead=Inf) # Infinite-step ahead predictions #' -#' +#' @references +#' Arun K. Tangirala (2015), \emph{Principles of System Identification: Theory +#' and Practice}, CRC Press, Boca Raton. Chapter 18 #' #' @export predict.estpoly <- function(x,newdata=NULL,nahead=1){ |