Parent package for common numerical analysis procedures, including root finding, function interpolation and integration. Note that optimization (i.e. minimization and maximization) is a separate top-level package.
Function interfaces are intended to be implemented by user code to represent domain problems. The algorithms provided by the library operate on these functions to find their roots, or integrate them, or ... Functions can be multivariate or univariate, real vectorial or matrix-valued, and they can be differentiable or not.
Interface | Description |
---|---|
BivariateFunction |
An interface representing a bivariate real function.
|
FieldUnivariateFunction |
An interface representing a univariate real function for any field type.
|
FieldUnivariateMatrixFunction |
An interface representing a univariate matrix function for any field type.
|
FieldUnivariateVectorFunction |
An interface representing a univariate vectorial function for any field type.
|
MultivariateFunction |
An interface representing a multivariate real function.
|
MultivariateMatrixFunction |
An interface representing a multivariate matrix function.
|
MultivariateVectorFunction |
An interface representing a multivariate vectorial function.
|
ParametricUnivariateFunction |
An interface representing a real function that depends on one independent
variable plus some extra parameters.
|
RealFieldUnivariateFunction<T extends RealFieldElement<T>> |
An interface representing a univariate real function.
|
RealFieldUnivariateMatrixFunction<T extends RealFieldElement<T>> |
An interface representing a univariate matrix function.
|
RealFieldUnivariateVectorFunction<T extends RealFieldElement<T>> |
An interface representing a univariate vectorial function for any field type.
|
TrivariateFunction |
An interface representing a trivariate real function.
|
UnivariateFunction |
An interface representing a univariate real function.
|
UnivariateMatrixFunction |
An interface representing a univariate matrix function.
|
UnivariateVectorFunction |
An interface representing a univariate vectorial function.
|
Class | Description |
---|---|
FunctionUtils |
Utilities for manipulating function objects.
|
Copyright © 2016–2018 Hipparchus.org. All rights reserved.