diff options
author | Suraj Yerramilli | 2015-11-01 23:40:27 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-11-01 23:40:27 +0530 |
commit | 03ec9cc22d40b537830bd80c361810744536e5a4 (patch) | |
tree | b417c68dd3a3e85c0a52c1b5a974eeac3baf5163 /R | |
parent | 99258294adb0fa1efb72e2719ff25266e701bde4 (diff) | |
download | SysID-R-code-03ec9cc22d40b537830bd80c361810744536e5a4.tar.gz SysID-R-code-03ec9cc22d40b537830bd80c361810744536e5a4.tar.bz2 SysID-R-code-03ec9cc22d40b537830bd80c361810744536e5a4.zip |
changes in default arguments
Diffstat (limited to 'R')
-rw-r--r-- | R/estpoly.R | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/R/estpoly.R b/R/estpoly.R index 062bccd..9128bec 100644 --- a/R/estpoly.R +++ b/R/estpoly.R @@ -374,7 +374,7 @@ armax <- function(x,order=c(0,1,1,0)){ #' plot(mod_oe) # plot the predicted and actual responses #' #' @export -oe <- function(x,order=c(1,0,1)){ +oe <- function(x,order=c(1,1,0)){ require(signal) y <- outputData(x); u <- inputData(x); N <- dim(y)[1] nb <- order[1];nf <- order[2]; nk <- order[3]; |