public class Powell extends SteepestDescent
| Modifier and Type | Class and Description |
|---|---|
protected class |
Powell.PowellImpl
an implementation of Powell's algorithm
|
SteepestDescent.SteepestDescentImplepsilon, maxIterations| Constructor and Description |
|---|
Powell(double epsilon,
int maxIterations)
Construct a multivariate minimizer using the Powell method.
|
| Modifier and Type | Method and Description |
|---|---|
IterativeMinimizer<Vector> |
solve(C2OptimProblem problem)
Solve a minimization problem with a C2 objective function.
|
public Powell(double epsilon,
int maxIterations)
epsilon - a precision parameter: when a number |x| ≤ ε, it is considered 0maxIterations - the maximum number of iterationspublic IterativeMinimizer<Vector> solve(C2OptimProblem problem) throws java.lang.Exception
SteepestDescentsolve in interface Optimizer<C2OptimProblem,IterativeMinimizer<Vector>>solve in class SteepestDescentproblem - a minimization problem with a C2 objective functionjava.lang.Exception - when there is an error solving the problem