Package pal.math
Interface UnivariateFunction
-
- All Known Implementing Classes:
LineFunction,OrthogonalLineFunction,SequencePairLikelihood
public interface UnivariateFunctioninterface for a function of one variable- Author:
- Korbinian Strimmer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doubleevaluate(double argument)compute function valuedoublegetLowerBound()get lower bound of argumentdoublegetUpperBound()get upper bound of argument
-
-
-
Method Detail
-
evaluate
double evaluate(double argument)
compute function value- Parameters:
function- argument- Returns:
- function value
-
getLowerBound
double getLowerBound()
get lower bound of argument- Returns:
- lower bound
-
getUpperBound
double getUpperBound()
get upper bound of argument- Returns:
- upper bound
-
-