Wrappers of common R optimization functions.
Their purpose is to be passed as the optim_function
argument in the gas()
function.
wrapper_optim_stats(obj_fun, theta_start, theta_bound_lower, theta_bound_upper,
est_details, ...)wrapper_optim_nloptr(obj_fun, theta_start, theta_bound_lower,
theta_bound_upper, est_details, ...)
A list with components:
The status of the optimization computation.
The optimal solution.
An objective function.
A numeric vector of starting values of the variables.
A numeric vector of lower bounds on the variables.
A numeric vector of upper bounds on the variables.
A list of variables used for estimation.
Additional arguments to be passed to the optimization function.
wrapper_optim_stats()
: Wrapper for optimization function stats::optim()
.
wrapper_optim_nloptr()
: Wrapper for optimization function nloptr::nloptr()
.
gas()
wrappers_hessian
wrappers_parallel