NonlinLeastSquaresIJacobianJacobian Method |
Jacobian of the user supplied nonlinear least squares function.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax void Jacobian(
double[] x,
double[,] jvalue
)
Sub Jacobian (
x As Double(),
jvalue As Double(,)
)
void Jacobian(
array<double>^ x,
array<double,2>^ jvalue
)
abstract Jacobian :
x : float[] *
jvalue : float[,] -> unit
Parameters
- x
- Type: SystemDouble
A double array containing the point at which the Jacobian
of the function is to be evaluated.
- jvalue
- Type: SystemDouble
A double matrix which, on return, contains the value of the
Jacobian, of the function, at x.
See Also