public class MullerSolver2 extends AbstractUnivariateSolver
Muller's method applies to both real and complex functions, but here we
restrict ourselves to real functions.
This class differs from MullerSolver
in the way it avoids complex
operations.
Except for the initial [min, max], it does not require bracketing condition, e.g. f(x0), f(x1), f(x2) can have the same sign. If a complex number arises in the computation, we simply use its modulus as a real approximation.
Because the interval may not be bracketing, the bisection alternative is not applicable here. However in practice our treatment usually works well, especially near real zeroes where the imaginary part of the complex approximation is often negligible.
The formulas here do not use divided differences directly.
MullerSolver
Constructor and Description |
---|
MullerSolver2()
Construct a solver with default accuracy (1e-6).
|
MullerSolver2(double absoluteAccuracy)
Construct a solver.
|
MullerSolver2(double relativeAccuracy,
double absoluteAccuracy)
Construct a solver.
|
getAbsoluteAccuracy, getEvaluations, getFunctionValueAccuracy, getMax, getMaxEvaluations, getMin, getRelativeAccuracy, getStartValue, solve, solve, solve
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getAbsoluteAccuracy, getEvaluations, getFunctionValueAccuracy, getMaxEvaluations, getRelativeAccuracy, solve, solve, solve
public MullerSolver2()
public MullerSolver2(double absoluteAccuracy)
absoluteAccuracy
- Absolute accuracy.public MullerSolver2(double relativeAccuracy, double absoluteAccuracy)
relativeAccuracy
- Relative accuracy.absoluteAccuracy
- Absolute accuracy.Jas4pp 1.5 © Java Analysis Studio for Particle Physics