Uses of Interface
org.apache.commons.math.analysis.UnivariateRealSolver

Packages that use UnivariateRealSolver
org.apache.commons.math.analysis Implementations of common numerical analysis procedures, including root finding and function interpolation. 
 

Uses of UnivariateRealSolver in org.apache.commons.math.analysis
 

Classes in org.apache.commons.math.analysis that implement UnivariateRealSolver
 class BisectionSolver
          Implements the bisection algorithm for finding zeros of univariate real functions.
 class BrentSolver
          Implements the Brent algorithm for finding zeros of real univariate functions.
 class LaguerreSolver
          Implements the Laguerre's Method for root finding of real coefficient polynomials.
 class MullerSolver
          Implements the Muller's Method for root finding of real univariate functions.
 class NewtonSolver
          Implements Newton's Method for finding zeros of real univariate functions.
 class RiddersSolver
          Implements the Ridders' Method for root finding of real univariate functions.
 class SecantSolver
          Implements a modified version of the secant method for approximating a zero of a real univariate function.
 class UnivariateRealSolverImpl
          Provide a default implementation for several functions useful to generic solvers.
 

Methods in org.apache.commons.math.analysis that return UnivariateRealSolver
 UnivariateRealSolver UnivariateRealSolverFactoryImpl.newBisectionSolver(UnivariateRealFunction f)
          Create a new UnivariateRealSolver for the given function.
abstract  UnivariateRealSolver UnivariateRealSolverFactory.newBisectionSolver(UnivariateRealFunction f)
          Create a new UnivariateRealSolver for the given function.
 UnivariateRealSolver UnivariateRealSolverFactoryImpl.newBrentSolver(UnivariateRealFunction f)
          Create a new UnivariateRealSolver for the given function.
abstract  UnivariateRealSolver UnivariateRealSolverFactory.newBrentSolver(UnivariateRealFunction f)
          Create a new UnivariateRealSolver for the given function.
 UnivariateRealSolver UnivariateRealSolverFactoryImpl.newDefaultSolver(UnivariateRealFunction f)
          Create a new UnivariateRealSolver for the given function.
abstract  UnivariateRealSolver UnivariateRealSolverFactory.newDefaultSolver(UnivariateRealFunction f)
          Create a new UnivariateRealSolver for the given function.
 UnivariateRealSolver UnivariateRealSolverFactoryImpl.newNewtonSolver(DifferentiableUnivariateRealFunction f)
          Create a new UnivariateRealSolver for the given function.
abstract  UnivariateRealSolver UnivariateRealSolverFactory.newNewtonSolver(DifferentiableUnivariateRealFunction f)
          Create a new UnivariateRealSolver for the given function.
 UnivariateRealSolver UnivariateRealSolverFactoryImpl.newSecantSolver(UnivariateRealFunction f)
          Create a new UnivariateRealSolver for the given function.
abstract  UnivariateRealSolver UnivariateRealSolverFactory.newSecantSolver(UnivariateRealFunction f)
          Create a new UnivariateRealSolver for the given function.