org.metaqtl.numrec
Interface NumericalUtilities.NRFunction

Enclosing class:
NumericalUtilities

public static interface NumericalUtilities.NRFunction

Author:
jveyrier One dimensional function definition for Newton Raphson root finding algorithm.

Method Summary
 void funcd(double x)
          Compute both the value and the derivate of the function in x.
 double getDF()
          Returns the value of the derivate in x;
 double getF()
          Returns the value of the function in x.
 

Method Detail

funcd

void funcd(double x)
Compute both the value and the derivate of the function in x.

Parameters:
x -

getF

double getF()
Returns the value of the function in x.

Returns:

getDF

double getDF()
Returns the value of the derivate in x;

Returns: