public interface Function
| Modifier and Type | Method and Description |
|---|---|
double |
evaluate(double x)
Evaluates f(x).
|
double[] |
evaluateInverse(double y)
Returns all the x-values for the equation f(x) = y.
|
double evaluate(double x)
x - the input for this function.
double[] evaluateInverse(double y)
y - a possible output of this function.