Jacobian of the user supplied nonlinear least squares function.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
void Jacobian(
	double[] x,
	double[,] jvalue
)
Visual Basic (Declaration)
Sub Jacobian ( _
	x As Double(), _
	jvalue As Double(,) _
)
Visual C++
void Jacobian(
	array<double>^ x, 
	array<double,2>^ jvalue
)

Parameters

x
Type: array< System..::.Double >[]()[]
A double array containing the point at which the Jacobian of the function is to be evaluated.
jvalue
Type: array< System..::.Double ,2>[,](,)[,]
A double matrix which, on return, contains the value of the Jacobian, of the function, at x.

See Also