Interface PolyRootSolver
-
- All Known Implementing Classes:
CubicRoot
,LinearRoot
,PolyRoot
,QuadraticRoot
,QuarticRoot
public interface PolyRootSolver
A root (or a zero) of a polynomial p is a member x in the domain of p such that p(x) vanishes. That is, p(x) = 0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends Number>
solve(Polynomial polynomial)
-
-
-
Method Detail
-
solve
List<? extends Number> solve(Polynomial polynomial)
-
-