diff options
author | Suraj Yerramilli | 2016-03-18 18:21:09 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2016-03-18 18:21:09 +0530 |
commit | a3c8be0455fda4667270a1e7ec71b99d64a45a3e (patch) | |
tree | de337509bc274501a3726956a97cd27688cb1fff /man | |
parent | 9a894b78aea2bfeb77042fd3f9e4598aee6223b2 (diff) | |
download | SysID-R-code-a3c8be0455fda4667270a1e7ec71b99d64a45a3e.tar.gz SysID-R-code-a3c8be0455fda4667270a1e7ec71b99d64a45a3e.tar.bz2 SysID-R-code-a3c8be0455fda4667270a1e7ec71b99d64a45a3e.zip |
integrate noise option for ARMAX models
Diffstat (limited to 'man')
-rw-r--r-- | man/armax.Rd | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/man/armax.Rd b/man/armax.Rd index 5bb880a..8e86575 100644 --- a/man/armax.Rd +++ b/man/armax.Rd @@ -4,7 +4,8 @@ \alias{armax} \title{Estimate ARMAX Models} \usage{ -armax(x, order = c(0, 1, 1, 0), init_sys = NULL, options = optimOptions()) +armax(x, order = c(0, 1, 1, 0), init_sys = NULL, intNoise = FALSE, + options = optimOptions()) } \arguments{ \item{x}{an object of class \code{idframe}} @@ -16,6 +17,9 @@ armax(x, order = c(0, 1, 1, 0), init_sys = NULL, options = optimOptions()) \item{init_sys}{Linear polynomial model that configures the initial parameterization. Must be an ARMAX model. Overrules the \code{order} argument} +\item{intNoise}{Logical variable indicating whether to add integrators in +the noise channel (Default=\code{FALSE})} + \item{options}{Estimation Options, setup using \code{\link{optimOptions}}} } \value{ |