numericalMethods.calculus.minimizing
Class Powell

java.lang.Object
  extended bynumericalMethods.calculus.minimizing.Powell
All Implemented Interfaces:
java.io.Serializable

public final class Powell
extends java.lang.Object
implements java.io.Serializable

See Also:
Serialized Form

Constructor Summary
Powell()
           
 
Method Summary
static void clean()
           
static boolean getDebug()
          Get the value of debug.
 int getIter()
          Get the value of iter.
static int getITMAX()
          Get the value of ITMAX.
static double[][] getStandardBasis(int dim)
           
static double search(double[] p, double[][] xi, double ftol, DoubleArrayParametrized F, DoubleValued f)
           
static double search(double[] p, double[][] xi, double ftol, DoubleValued f)
           
static double search(double[] p, double ftol, DoubleValued f)
           
static void setDebug(boolean v)
          Set the value of debug.
static void setITMAX(int v)
          Set the value of ITMAX.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Powell

public Powell()
Method Detail

getITMAX

public static int getITMAX()
Get the value of ITMAX.

Returns:
Value of ITMAX.

setITMAX

public static void setITMAX(int v)
Set the value of ITMAX.

Parameters:
v - Value to assign to ITMAX.

getDebug

public static boolean getDebug()
Get the value of debug.

Returns:
Value of debug.

setDebug

public static void setDebug(boolean v)
Set the value of debug.

Parameters:
v - Value to assign to debug.

getIter

public int getIter()
Get the value of iter.

Returns:
Value of iter.

clean

public static void clean()

getStandardBasis

public static double[][] getStandardBasis(int dim)

search

public static final double search(double[] p,
                                  double ftol,
                                  DoubleValued f)

search

public static final double search(double[] p,
                                  double[][] xi,
                                  double ftol,
                                  DoubleValued f)

search

public static final double search(double[] p,
                                  double[][] xi,
                                  double ftol,
                                  DoubleArrayParametrized F,
                                  DoubleValued f)