diff options
Diffstat (limited to 'R')
-rw-r--r-- | R/estUtil.R | 3 | ||||
-rw-r--r-- | R/estpoly.R | 7 |
2 files changed, 7 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 +#' } #' } #' #' |