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.3618.0 (4.8.3618.0)
Syntax
C#
public delegate void FitEvaluationFunction(
	ReadOnlySpan<double> independent,
	ReadOnlySpan<double> parameters,
	Span<double> FV
)

Parameters

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