|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.math.analysis.solvers.UnivariateRealSolverFactory
org.apache.commons.math.analysis.solvers.UnivariateRealSolverFactoryImpl
public class 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()
Create a new UnivariateRealSolver . |
UnivariateRealSolver |
newBrentSolver()
Create a new UnivariateRealSolver . |
UnivariateRealSolver |
newDefaultSolver()
Create a new UnivariateRealSolver . |
UnivariateRealSolver |
newNewtonSolver()
Create a new UnivariateRealSolver . |
UnivariateRealSolver |
newSecantSolver()
Create a new UnivariateRealSolver . |
Methods inherited from class org.apache.commons.math.analysis.solvers.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()
UnivariateRealSolver
. The
actual solver returned is determined by the underlying factory.
newDefaultSolver
in class UnivariateRealSolverFactory
public UnivariateRealSolver newBisectionSolver()
UnivariateRealSolver
. The
solver is an implementation of the bisection method.
newBisectionSolver
in class UnivariateRealSolverFactory
public UnivariateRealSolver newBrentSolver()
UnivariateRealSolver
. The
solver is an implementation of the Brent method.
newBrentSolver
in class UnivariateRealSolverFactory
public UnivariateRealSolver newNewtonSolver()
UnivariateRealSolver
. The
solver is an implementation of Newton's Method.
newNewtonSolver
in class UnivariateRealSolverFactory
public UnivariateRealSolver newSecantSolver()
UnivariateRealSolver
. The
solver is an implementation of the secant method.
newSecantSolver
in class UnivariateRealSolverFactory
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |