diff options
-rw-r--r-- | R/estpoly.R | 2 | ||||
-rw-r--r-- | man/oe.Rd | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/R/estpoly.R b/R/estpoly.R index 3a0c7c8..9127b84 100644 --- a/R/estpoly.R +++ b/R/estpoly.R @@ -292,6 +292,8 @@ armax <- function(x,order=c(0,1,1,0),options=optimOptions()){ #' @param order: Specification of the orders: the four integer components #' (nb,nf,nk) are order of polynomial B + 1, order of the polynomial F, #' and the input-output delay respectively +#' @param options Estimation Options, setup using +#' \code{\link{optimOptions}} #' #' @details #' SISO OE models are of the form @@ -4,11 +4,14 @@ \alias{oe} \title{Estimate Output-Error Models} \usage{ -oe(x, order = c(1, 1, 0)) +oe(x, order = c(1, 1, 0), options = optimOptions()) } \arguments{ \item{x}{an object of class \code{idframe}} +\item{options}{Estimation Options, setup using +\code{\link{optimOptions}}} + \item{order:}{Specification of the orders: the four integer components (nb,nf,nk) are order of polynomial B + 1, order of the polynomial F, and the input-output delay respectively} |