run_nloptr | R Documentation |
runs optimization using nloptr package
run_nloptr( objective, start, lower = NULL, upper = NULL, hessian = FALSE, method = "neldermead", control = list(), ... )
objective |
function; the objective function to minimize |
start |
numeric vector; starting parameters |
hessian |
logical; if TRUE, find the hessian at the optimum. Default = T |
method |
string; method to use. See details. Default = "neldermead" |
control |
list; list of options. See nloptr::nloptr.print.options() for details. |
... |
further arguments passed to nloptr method and objective |
method options = "bobyqa", "ccsaq", "cobyla", "crs2lm", "direct", "isres", "lbfgs", "mma", "neldermead", "newuoa", "sbplx", "slsqp", "stogo", "tnewton", "varmetric"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.