diff options
-rw-r--r-- | R/estUtil.R | 3 | ||||
-rw-r--r-- | R/estpoly.R | 7 | ||||
-rw-r--r-- | man/armax.Rd | 5 |
3 files changed, 12 insertions, 3 deletions
diff --git a/R/estUtil.R b/R/estUtil.R index 96ac3e3..1451326 100644 --- a/R/estUtil.R +++ b/R/estUtil.R @@ -97,8 +97,7 @@ levbmqdt <- function(...,obj,theta0,N,opt){ vcov <- sigma2 * Hinv/sqrt(N) list(params=theta,residuals=e,vcov=vcov,sigma = sqrt(sigma2), - termination=list(WhyStop=WhyStop,iter=i,FcnCount = countObj, - damping=d,sumSqRatio=sumSqRatio)) + termination=list(WhyStop=WhyStop,iter=i,FcnCount = countObj)) } #' @export diff --git a/R/estpoly.R b/R/estpoly.R index c512933..9da3f9f 100644 --- a/R/estpoly.R +++ b/R/estpoly.R @@ -235,7 +235,12 @@ arx <- function(x,order=c(0,1,0)){ #' \code{options} \tab Option set used for estimation. If no #' custom options were configured, this is a set of default options. \cr #' \code{termination} \tab Termination conditions for the iterative -#' search used for prediction error minimization. +#' search used for prediction error minimization. +#' \tabular{ll}{ +#' \code{WhyStop} \tab Reason for termination +#' \code{iter} \tab Number of Iterations +#' \code{iter} \tab Number of Function Evaluations +#' } #' } #' #' diff --git a/man/armax.Rd b/man/armax.Rd index 82f19ed..9c4020f 100644 --- a/man/armax.Rd +++ b/man/armax.Rd @@ -34,6 +34,11 @@ An object of class \code{estpoly} containing the following elements: custom options were configured, this is a set of default options. \cr \code{termination} \tab Termination conditions for the iterative search used for prediction error minimization. + \tabular{ll}{ + \code{WhyStop} \tab Reason for termination + \code{iter} \tab Number of Iterations + \code{iter} \tab Number of Function Evaluations + } } } \description{ |