FitEvaluationFunction Delegate |
This evaluates a function value.
Namespace: Altaxo.Calc.Regression.NonlinearAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3618.0 (4.8.3618.0)
Syntaxpublic 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