Public interface for the user-supplied function to compute the Jacobian.

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

Syntax

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

Parameters

x
Type: array< System..::.Double >[]()[]
A double array, the point at which the Jacobian is to evaluated. x.length = nVariables.
fjac
Type: array< System..::.Double >[]()[]
A double array which, on return, contains the computed Jacobian at the point x. fjac.length = mFunctions x nVariables.

See Also