mle.control | R Documentation |
Control for the optimization routine
for the MLE (see nfcm_mle
). Currently the
optimization routine is a sequential quadratic programming
(SQP) algorithm slsqp
from the nloptr
package, and thus the control are the same as nl.opts
mle.control(
stopval = -Inf,
xtol_rel = 1e-06,
maxeval = 30000,
ftol_rel = 0,
ftol_abs = 0,
check_derivatives = FALSE
)
stopval |
stop minimization at this value |
xtol_rel |
tolerance for step |
maxeval |
max number of function evaluations (default is 30000) |
ftol_rel |
relative tolerance |
ftol_abs |
absolute tolerance |
check_derivatives |
verification |
nl.opts
, slsqp
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.