Click or drag to resize

LevMarAdapterEvaluateFitJacobian Method

Calculates the jacobian values, i.e. the derivatives of the fitting values with respect to the parameters.

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void EvaluateFitJacobian(
	double[] parameter,
	double[] outputValues,
	Object? adata
)

Parameters

parameter  Double
The parameter used to calculate the values.
outputValues  Double
You must provide an array to hold the calculated values. Size of the array must be at least NumberOfData*NumberOfParameters.
adata  Object
Currently ignored.
Remarks
The values of the fit elements are stored in the order from element_0 to element_n*m. If there is more than one used dependent variable per fit element, the output values are stored in interleaved order. The derivatives on one fitting value are stored in successive order.
See Also