edu.mines.jtk.opt
Interface BrentMinFinder.Function

Enclosing class:
BrentMinFinder

public static interface BrentMinFinder.Function

A function f(x) of one variable x.


Method Summary
 double evaluate(double x)
          Returns the value of this function f(x) for the specified argument x.
 

Method Detail

evaluate

double evaluate(double x)
Returns the value of this function f(x) for the specified argument x.

Parameters:
x - the function argument x.
Returns:
the function value f(x).