Click or drag to resize
BoundedLeastSquaresIJacobianJacobian Method
Public interface for the user-supplied function to compute the Jacobian.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
void Jacobian(
	double[] x,
	double[] fjac
)

Parameters

x
Type: SystemDouble
A double array, the point at which the Jacobian is to evaluated. x.length = nVariables.
fjac
Type: SystemDouble
A double array which, on return, contains the computed Jacobian at the point x. fjac.length = mFunctions x nVariables.
See Also