Click or drag to resize

LevMarAdapterEvaluateFitDifferences Method

Provides an adapter for the NLFit.LMFunction interface.

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void EvaluateFitDifferences(
	int numberOfYs,
	int numberOfParameter,
	double[] parameter,
	double[] ys,
	ref int info
)

Parameters

numberOfYs  Int32
Number of dependent variables. Is ignored. Instead, the length of the ys array is used.
numberOfParameter  Int32
Number of parameters. Is ignored here. Instead, the length of the parameter array is used.
parameter  Double
Array of parameters.
ys  Double
Output: this holds the calculated differences between dependent values and model.
info  Int32
Not used here.
See Also