numericalMethods.calculus.minimizing
Class Brent

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

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

See Also:
Serialized Form

Constructor Summary
Brent()
           
 
Method Summary
static double getITMAX()
          Get the value of ITMAX.
static void search(double[] t, double[] X, DoubleValued f, double tol)
           
static void search(double ax, double bx, double cx, double[] X, DoubleValued f, double tol)
           
static void setITMAX(double 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

Brent

public Brent()
Method Detail

getITMAX

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

Returns:
Value of ITMAX.

setITMAX

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

Parameters:
v - Value to assign to ITMAX.

search

public static final void search(double[] t,
                                double[] X,
                                DoubleValued f,
                                double tol)

search

public static final void search(double ax,
                                double bx,
                                double cx,
                                double[] X,
                                DoubleValued f,
                                double tol)