Click or drag to resize

FitEvaluationFunction Delegate

This evaluates a function value.

Namespace: Altaxo.Calc.Regression.Nonlinear
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public delegate void FitEvaluationFunction(
	double[] independent,
	double[] parameters,
	double[] FV
)

Parameters

independent  Double
The independent variables.
parameters  Double
Parameters for evaluation.
FV  Double
On return, this array contains the one (or more) evaluated function value(s) at the point designated by independent.
See Also