sumt(x0, L, P, grad_L = NULL, grad_P = NULL, method = NULL,
eps = NULL, q = NULL, verbose = NULL, control = list())
L
, or
NULL
(default).P
, or
NULL
(default).NULL
. If not given,
"CG"
is used. If equal to "nlm"
, minimization is
carried out using nlm
. Otherwise,
x
values is
less than eps
. Defaults to sqrt(.Machine$double.eps)
.getOption("verbose")
.optim
is used."sumt"
, with components x
,
L
, P
, and rho
giving the solution obtained, the
value of the criterion and penalty function at x
, and the final
$\rho$ value used in the augmented criterion function. The unconstrained minimizations are carried out by either
optim
or nlm
, using analytic
gradients if both grad_L
and grad_P
are given, and
numeric ones otherwise.
If more than one starting value is given, the solution with the minimal augmented criterion function value is returned.