| Package | Description |
|---|---|
| org.apache.commons.math.analysis |
Parent package for common numerical analysis procedures, including root finding,
function interpolation and integration.
|
| org.apache.commons.math.optimization |
This package provides common interfaces for the optimization algorithms
provided in sub-packages.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DifferentiableMultivariateVectorialFunction
Extension of
MultivariateVectorialFunction representing a differentiable
multivariate vectorial function. |
| Modifier and Type | Method and Description |
|---|---|
MultivariateVectorialFunction |
DifferentiableMultivariateRealFunction.gradient()
Returns the gradient function.
|
| Constructor and Description |
|---|
LeastSquaresConverter(MultivariateVectorialFunction function,
double[] observations)
Build a simple converter for uncorrelated residuals with the same weight.
|
LeastSquaresConverter(MultivariateVectorialFunction function,
double[] observations,
double[] weights)
Build a simple converter for uncorrelated residuals with the specific weights.
|
LeastSquaresConverter(MultivariateVectorialFunction function,
double[] observations,
RealMatrix scale)
Build a simple converter for correlated residuals with the specific weights.
|
Copyright © 2003–2015. All rights reserved.