Click or drag to resize

NonLinearFit2FitFunction Delegate

Delegate describing the model function that maps a parameter vector to the predicted measurements.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public delegate void FitFunction(
	double[] parameter,
	double[] output,
	Object? additionalData
)

Parameters

parameter  Double
Parameter vector p (length m).
output  Double
Output vector (length n) receiving f(p).
additionalData  Object
Optional additional user data passed through to the function.
See Also