Interface SingleRootFinder<S,T>
-
- Type Parameters:
S
- The input type of the functionT
- The output type of the function
- All Known Implementing Classes:
BaseNewtonVectorRootFinder
,BisectionSingleRootFinder
,BrentSingleRootFinder
,BroydenVectorRootFinder
,NewtonDefaultVectorRootFinder
,NewtonRaphsonSingleRootFinder
,RealSingleRootFinder
,RidderSingleRootFinder
,ShermanMorrisonVectorRootFinder
,VectorRootFinder
public interface SingleRootFinder<S,T>
Interface for classes that attempt to find a root for a one-dimensional function (seeFunction
) $f(x)$ bounded by user-supplied values, $x_1$ and $x_2$. If there is not a single root between these bounds, an exception is thrown.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S
getRoot(Function<S,T> function, S... roots)
Finds the root.
-