Package park :: Package optim :: Module fitde

Module fitde

source code

Classes
  FitDE
Differential evolution optimizer.
Functions
 
fitde(fitness, n, handler)
Run a differential evolution fit.
source code
Function Details

fitde(fitness, n, handler)

source code 

Run a differential evolution fit.

This procedure maps a local optimizer across a set of n initial points. The initial parameter value defined by the fitness parameters defines one initial point. The remainder are randomly generated within the bounds of the problem.

localfit is the local optimizer to use. It should be a bounded optimizer following the park.fitmc.LocalFit interface.

handler accepts updates to the current best set of fit parameters. See park.fitresult.FitHandler for details.