protected DerivativeStructure |
AbstractUnivariateDifferentiableSolver.computeObjectiveValueAndDerivative(double point) |
Compute the objective function value.
|
protected double |
BisectionSolver.doSolve() |
Method for implementing actual optimization algorithms in derived
classes.
|
protected double |
BracketingNthOrderBrentSolver.doSolve() |
Method for implementing actual optimization algorithms in derived
classes.
|
double |
LaguerreSolver.doSolve() |
Method for implementing actual optimization algorithms in derived
classes.
|
protected double |
MullerSolver.doSolve() |
Method for implementing actual optimization algorithms in derived
classes.
|
protected double |
MullerSolver2.doSolve() |
Method for implementing actual optimization algorithms in derived
classes.
|
protected double |
NewtonRaphsonSolver.doSolve() |
Method for implementing actual optimization algorithms in derived
classes.
|
protected double |
RiddersSolver.doSolve() |
Method for implementing actual optimization algorithms in derived
classes.
|
protected double |
SecantSolver.doSolve() |
Method for implementing actual optimization algorithms in derived
classes.
|
double |
BaseUnivariateSolver.solve(int maxEval,
FUNC f,
double min,
double max) |
Solve for a zero root in the given interval.
|
double |
BaseUnivariateSolver.solve(int maxEval,
FUNC f,
double min,
double max,
double startValue) |
Solve for a zero in the given interval, start at startValue .
|
double |
BracketingNthOrderBrentSolver.solve(int maxEval,
UnivariateFunction f,
double min,
double max,
double startValue,
AllowedSolution allowedSolution) |
Solve for a zero in the given interval, start at startValue .
|
double |
BracketingNthOrderBrentSolver.solve(int maxEval,
UnivariateFunction f,
double min,
double max,
AllowedSolution allowedSolution) |
Solve for a zero in the given interval.
|
double |
NewtonRaphsonSolver.solve(int maxEval,
UnivariateDifferentiableFunction f,
double min,
double max) |
Find a zero near the midpoint of min and max .
|
org.apache.commons.numbers.complex.Complex[] |
LaguerreSolver.solveAllComplex(double[] coefficients,
double initial) |
Find all complex roots for the polynomial with the given
coefficients, starting from the given initial value.
|
org.apache.commons.numbers.complex.Complex |
LaguerreSolver.solveComplex(double[] coefficients,
double initial) |
Find a complex root for the polynomial with the given coefficients,
starting from the given initial value.
|