|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.apache.commons.math.analysis.UnivariateRealSolverFactory
org.apache.commons.math.analysis.UnivariateRealSolverFactoryImpl
A concrete UnivariateRealSolverFactory. This is the default solver factory
used by commons-math.
The default solver returned by this factory is a BrentSolver.
| Constructor Summary | |
UnivariateRealSolverFactoryImpl()
Default constructor. |
|
| Method Summary | |
UnivariateRealSolver |
newBisectionSolver(UnivariateRealFunction f)
Create a new UnivariateRealSolver for the given function. |
UnivariateRealSolver |
newBrentSolver(UnivariateRealFunction f)
Create a new UnivariateRealSolver for the given function. |
UnivariateRealSolver |
newDefaultSolver(UnivariateRealFunction f)
Create a new UnivariateRealSolver for the given function. |
UnivariateRealSolver |
newNewtonSolver(DifferentiableUnivariateRealFunction f)
Create a new UnivariateRealSolver for the given function. |
UnivariateRealSolver |
newSecantSolver(UnivariateRealFunction f)
Create a new UnivariateRealSolver for the given function. |
| Methods inherited from class org.apache.commons.math.analysis.UnivariateRealSolverFactory |
newInstance |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public UnivariateRealSolverFactoryImpl()
| Method Detail |
public UnivariateRealSolver newDefaultSolver(UnivariateRealFunction f)
UnivariateRealSolver for the given function. The
actual solver returned is determined by the underlying factory.
This factory returns a BrentSolver instance.
newDefaultSolver in class UnivariateRealSolverFactoryf - the function.
public UnivariateRealSolver newBisectionSolver(UnivariateRealFunction f)
UnivariateRealSolver for the given function. The
solver is an implementation of the bisection method.
newBisectionSolver in class UnivariateRealSolverFactoryf - the function.
public UnivariateRealSolver newBrentSolver(UnivariateRealFunction f)
UnivariateRealSolver for the given function. The
solver is an implementation of the Brent method.
newBrentSolver in class UnivariateRealSolverFactoryf - the function.
public UnivariateRealSolver newNewtonSolver(DifferentiableUnivariateRealFunction f)
UnivariateRealSolver for the given function. The
solver is an implementation of Newton's Method.
newNewtonSolver in class UnivariateRealSolverFactoryf - the function.
public UnivariateRealSolver newSecantSolver(UnivariateRealFunction f)
UnivariateRealSolver for the given function. The
solver is an implementation of the secant method.
newSecantSolver in class UnivariateRealSolverFactoryf - the function.
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||