R/winsrch_constrOptim.R
winsrch_constrOptim.RdFind the optimal half-window width combination to use for weighted regression. This differs from winsrch_optim by using constrOptim
input data object to use with weighted regression
starting list of window weights for initializing the search algorithm
A list of control parameters passed to optim (see details in optim help file).
vector of minimum half-window widths to evaluate
vector of maximum half-window widths to evaluate
Some stuff
This function uses optim to minimize the error returned by wrtdscv for a given window combination. The search algorithm uses the limited-memory modification of the BFGS quasi-Newton method to impose upper and lower limits on the optimization search. These limits can be changed using the lower and upper arguments.
if (FALSE) {
# setup parallel backend
library(doParallel)
ncores <- detectCores() - 1
registerDoParallel(cores = ncores)
# run search function - takes a while
res <- winsrch_optim(tidobjmean)
}