|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.math3.analysis.solvers.BaseAbstractUnivariateSolver<UnivariateFunction> org.apache.commons.math3.analysis.solvers.AbstractUnivariateSolver org.apache.commons.math3.analysis.solvers.RiddersSolver
public class RiddersSolver
Implements the Ridders' Method for root finding of real univariate functions. For reference, see C. Ridders, A new algorithm for computing a single root of a real continuous function , IEEE Transactions on Circuits and Systems, 26 (1979), 979 - 980.
The function should be continuous but not necessarily smooth.
Constructor Summary | |
---|---|
RiddersSolver()
Construct a solver with default accuracy (1e-6). |
|
RiddersSolver(double absoluteAccuracy)
Construct a solver. |
|
RiddersSolver(double relativeAccuracy,
double absoluteAccuracy)
Construct a solver. |
Method Summary | |
---|---|
protected double |
doSolve()
Method for implementing actual optimization algorithms in derived classes. |
Methods inherited from class org.apache.commons.math3.analysis.solvers.BaseAbstractUnivariateSolver |
---|
computeObjectiveValue, getAbsoluteAccuracy, getEvaluations, getFunctionValueAccuracy, getMax, getMaxEvaluations, getMin, getRelativeAccuracy, getStartValue, incrementEvaluationCount, isBracketing, isSequence, setup, solve, solve, solve, verifyBracketing, verifyInterval, verifySequence |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.commons.math3.analysis.solvers.BaseUnivariateSolver |
---|
getAbsoluteAccuracy, getEvaluations, getFunctionValueAccuracy, getMaxEvaluations, getRelativeAccuracy, solve, solve, solve |
Constructor Detail |
---|
public RiddersSolver()
public RiddersSolver(double absoluteAccuracy)
absoluteAccuracy
- Absolute accuracy.public RiddersSolver(double relativeAccuracy, double absoluteAccuracy)
relativeAccuracy
- Relative accuracy.absoluteAccuracy
- Absolute accuracy.Method Detail |
---|
protected double doSolve() throws TooManyEvaluationsException, NoBracketingException
doSolve
in class BaseAbstractUnivariateSolver<UnivariateFunction>
TooManyEvaluationsException
- if the maximal number of evaluations
is exceeded.
NoBracketingException
- if the initial search interval does not bracket
a root and the solver requires it.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |