summaryrefslogtreecommitdiff
path: root/R/estpoly.R
diff options
context:
space:
mode:
Diffstat (limited to 'R/estpoly.R')
-rw-r--r--R/estpoly.R13
1 files changed, 6 insertions, 7 deletions
diff --git a/R/estpoly.R b/R/estpoly.R
index 2fa4351..25a65d2 100644
--- a/R/estpoly.R
+++ b/R/estpoly.R
@@ -67,16 +67,15 @@ predict.estpoly <- function(x,newdata=NULL,nahead=1){
if(is.null(newdata)&&nahead=1){
return(fitted(x))
} else{
- mod <- x$sys
+ model <- x$sys
if(is.null(newdata)){
- y <- fitted(mod)+resid(mod)
- u <- mod$input
+ y <- fitted(x)+resid(x)
+ u <- x$input
+ z <- idframe(y,u,Ts = deltat(y),start=start(y))
} else{
- y <- outputData(newdata); u <- inputData(newdata)
+ z <- newdata
}
-
-
- return(ypred)
+ predict(model,z,nahead)
}
}