Package com.imsl.math
Interface BoundedLeastSquares.Jacobian
- Enclosing class:
- BoundedLeastSquares
public static interface BoundedLeastSquares.Jacobian
Public interface for the user-supplied function to compute the Jacobian.
-
Method Summary
Modifier and TypeMethodDescriptionvoidcompute(double[] x, double[] fjac) Public interface for the user-supplied function to compute the Jacobian.
-
Method Details
-
compute
void compute(double[] x, double[] fjac) Public interface for the user-supplied function to compute the Jacobian.- Parameters:
x- adoublearray, the point at which the Jacobian is to evaluated.x.length = nVariablesfjac- adoublearray, the computed Jacobian at the pointx.fjac.length = mFunctions x nVariables
-