Interface ValueAndJacobianFunction
- All Superinterfaces:
MultivariateJacobianFunction
A interface for functions that compute a vector of values and can compute their
derivatives (Jacobian).
-
Method Summary
Modifier and TypeMethodDescriptioncomputeJacobian
(double[] params) Compute the Jacobian.computeValue
(double[] params) Compute the value.Methods inherited from interface org.hipparchus.optim.nonlinear.vector.leastsquares.MultivariateJacobianFunction
value
-
Method Details
-
computeValue
Compute the value.- Parameters:
params
- Point.- Returns:
- the value at the given point.
-
computeJacobian
Compute the Jacobian.- Parameters:
params
- Point.- Returns:
- the Jacobian at the given point.
-