org.apache.commons.math.optimization
Class NelderMead

java.lang.Object
  extended by org.apache.commons.math.optimization.DirectSearchOptimizer
      extended by org.apache.commons.math.optimization.NelderMead

public class NelderMead
extends DirectSearchOptimizer

This class implements the Nelder-Mead direct search method.

Since:
1.2
Version:
$Revision: 620312 $ $Date: 2008-02-10 12:28:59 -0700 (Sun, 10 Feb 2008) $
See Also:
MultiDirectional

Field Summary
private  double gamma
          Contraction coefficient.
private  double khi
          Expansion coefficient.
private  double rho
          Reflection coefficient.
private  double sigma
          Shrinkage coefficient.
 
Fields inherited from class org.apache.commons.math.optimization.DirectSearchOptimizer
simplex
 
Constructor Summary
NelderMead()
          Build a Nelder-Mead optimizer with default coefficients.
NelderMead(double rho, double khi, double gamma, double sigma)
          Build a Nelder-Mead optimizer with specified coefficients.
 
Method Summary
protected  void iterateSimplex()
          Compute the next simplex of the algorithm.
 
Methods inherited from class org.apache.commons.math.optimization.DirectSearchOptimizer
evaluateCost, evaluateSimplex, getMinima, minimize, minimize, minimize, minimize, minimize, minimize, replaceWorstPoint
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

rho

private double rho
Reflection coefficient.


khi

private double khi
Expansion coefficient.


gamma

private double gamma
Contraction coefficient.


sigma

private double sigma
Shrinkage coefficient.

Constructor Detail

NelderMead

public NelderMead()
Build a Nelder-Mead optimizer with default coefficients.

The default coefficients are 1.0 for rho, 2.0 for khi and 0.5 for both gamma and sigma.


NelderMead

public NelderMead(double rho,
                  double khi,
                  double gamma,
                  double sigma)
Build a Nelder-Mead optimizer with specified coefficients.

Parameters:
rho - reflection coefficient
khi - expansion coefficient
gamma - contraction coefficient
sigma - shrinkage coefficient
Method Detail

iterateSimplex

protected void iterateSimplex()
                       throws CostException
Compute the next simplex of the algorithm.

Specified by:
iterateSimplex in class DirectSearchOptimizer
Throws:
CostException - if the function cannot be evaluated at some point