Package | Description |
---|---|
org.apache.commons.math3.optimization |
This package provides common interfaces for the optimization algorithms
provided in sub-packages.
|
org.apache.commons.math3.optimization.direct |
This package provides optimization algorithms that don't require derivatives.
|
org.apache.commons.math3.optimization.general |
This package provides optimization algorithms that require derivatives.
|
Modifier and Type | Interface and Description |
---|---|
interface |
DifferentiableMultivariateVectorOptimizer
This interface represents an optimization algorithm for
vectorial differentiable
objective functions . |
Modifier and Type | Class and Description |
---|---|
class |
BaseMultivariateVectorMultiStartOptimizer<FUNC extends MultivariateVectorFunction>
Base class for all implementations of a multi-start optimizer.
|
class |
DifferentiableMultivariateVectorMultiStartOptimizer
Special implementation of the
DifferentiableMultivariateVectorOptimizer
interface addind multi-start features to an existing optimizer. |
Constructor and Description |
---|
BaseMultivariateVectorMultiStartOptimizer(BaseMultivariateVectorOptimizer<FUNC> optimizer,
int starts,
RandomVectorGenerator generator)
Create a multi-start optimizer from a single-start optimizer.
|
Modifier and Type | Class and Description |
---|---|
class |
BaseAbstractMultivariateVectorOptimizer<FUNC extends MultivariateVectorFunction>
Base class for implementing optimizers for multivariate scalar functions.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractLeastSquaresOptimizer
Base class for implementing least squares optimizers.
|
class |
GaussNewtonOptimizer
Gauss-Newton least-squares solver.
|
class |
LevenbergMarquardtOptimizer
This class solves a least squares problem using the Levenberg-Marquardt algorithm.
|
Copyright © 2003-2012 The Apache Software Foundation. All Rights Reserved.