FUNC
- Type of the objective function to be optimized.@Deprecated public class BaseMultivariateVectorMultiStartOptimizer<FUNC extends MultivariateVectorFunction> extends Object implements BaseMultivariateVectorOptimizer<FUNC>
DifferentiableMultivariateVectorMultiStartOptimizer
.Modifier and Type | Method and Description |
---|---|
ConvergenceChecker<PointVectorValuePair> |
getConvergenceChecker()
Deprecated.
Get the convergence checker.
|
int |
getEvaluations()
Deprecated.
Get the number of evaluations of the objective function.
|
int |
getMaxEvaluations()
Deprecated.
Get the maximal number of function evaluations.
|
PointVectorValuePair[] |
getOptima()
Deprecated.
Get all the optima found during the last call to
optimize . |
PointVectorValuePair |
optimize(int maxEval,
FUNC f,
double[] target,
double[] weights,
double[] startPoint)
Deprecated.
Optimize an objective function.
|
public PointVectorValuePair[] getOptima()
optimize
.
The optimizer stores all the optima found during a set of
restarts. The optimize
method returns the best point only. This method
returns all the points found at the end of each starts, including
the best one already returned by the optimize
method.
optimize
method did
throw a ConvergenceException
). This also means that if
the first element is not null
, it is the best point found
across all starts.MathIllegalStateException
- if optimize
has not been
called.public int getMaxEvaluations()
getMaxEvaluations
in interface BaseOptimizer<PointVectorValuePair>
public int getEvaluations()
optimize
method. It is 0 if the method has not been
called yet.getEvaluations
in interface BaseOptimizer<PointVectorValuePair>
public ConvergenceChecker<PointVectorValuePair> getConvergenceChecker()
getConvergenceChecker
in interface BaseOptimizer<PointVectorValuePair>
public PointVectorValuePair optimize(int maxEval, FUNC f, double[] target, double[] weights, double[] startPoint)
∑weighti(objectivei - targeti)2
optimize
in interface BaseMultivariateVectorOptimizer<FUNC extends MultivariateVectorFunction>
maxEval
- Maximum number of function evaluations.f
- Objective function.target
- Target value for the objective functions at optimum.weights
- Weights for the least squares cost computation.startPoint
- Start point for optimization.Jas4pp 1.5 © Java Analysis Studio for Particle Physics