Package com.imsl.math
Interface NonlinLeastSquares.Jacobian
- All Superinterfaces:
NonlinLeastSquares.Function
- Enclosing class:
- NonlinLeastSquares
Public interface for the user supplied function to the
NonlinLeastSquares object.-
Method Summary
Modifier and TypeMethodDescriptionvoidjacobian(double[] x, double[][] jacobian) Public interface for the nonlinear least squares function.Methods inherited from interface com.imsl.math.NonlinLeastSquares.Function
f
-
Method Details
-
jacobian
void jacobian(double[] x, double[][] jacobian) Public interface for the nonlinear least squares function.- Parameters:
x- is adoublearray containing the point at which the Jacobian of the function is to be evaluatedjacobian- is adoublematrix containing the returned value of the Jacobian of the function at x
-