diff options
author | Suraj Yerramilli | 2016-03-22 10:30:50 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2016-03-22 10:30:50 +0530 |
commit | 3fb63299a4d3b1cf748d3414a4fc6ff8f4e23368 (patch) | |
tree | 53a7ac3d98b5fb7599e1ff3e46efe74eb4310fc5 | |
parent | 7d047bf6b3f7ed956656caaf8f95ebade87cdc79 (diff) | |
download | SysID-R-code-3fb63299a4d3b1cf748d3414a4fc6ff8f4e23368.tar.gz SysID-R-code-3fb63299a4d3b1cf748d3414a4fc6ff8f4e23368.tar.bz2 SysID-R-code-3fb63299a4d3b1cf748d3414a4fc6ff8f4e23368.zip |
updating arx documentation
-rw-r--r-- | R/estpoly.R | 3 | ||||
-rw-r--r-- | man/arx.Rd | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/R/estpoly.R b/R/estpoly.R index d99c64e..c15dc80 100644 --- a/R/estpoly.R +++ b/R/estpoly.R @@ -121,6 +121,9 @@ residplot <- function(model,newdata=NULL){ #' @param lambda Regularization parameter(Default=\code{0.1}) #' @param intNoise Logical variable indicating whether to add integrators in #' the noise channel (Default=\code{FALSE}) +#' @param fixed list containing fixed parameters. If supplied, only \code{NA} entries +#' will be varied. Specified as a list of two vectors, each containing the parameters +#' of polynomials A and B respectively. #' #' @details #' SISO ARX models are of the form @@ -4,7 +4,7 @@ \alias{arx} \title{Estimate ARX Models} \usage{ -arx(x, order = c(1, 1, 1), lambda = 0.1, intNoise = FALSE) +arx(x, order = c(1, 1, 1), lambda = 0.1, intNoise = FALSE, fixed = NULL) } \arguments{ \item{x}{an object of class \code{idframe}} @@ -17,6 +17,10 @@ the input-output delay} \item{intNoise}{Logical variable indicating whether to add integrators in the noise channel (Default=\code{FALSE})} + +\item{fixed}{list containing fixed parameters. If supplied, only \code{NA} entries +will be varied. Specified as a list of two vectors, each containing the parameters +of polynomials A and B respectively.} } \value{ An object of class \code{estpoly} containing the following elements: |