User-supplied subroutine which calculates the functions to minimize.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic delegate void LMFunction(
int numberOfYs,
int numberOfParameter,
double[] parameter,
double[] ys,
ref int info
)
Parameters
- numberOfYs Int32
- The number of function values to compute.
- numberOfParameter Int32
- The number of parameters.
- parameter Double
- The parameter vector.
- ys Double
- The destination array that receives the computed function values.
- info Int32
-
Status flag that can be set by the callee to terminate execution (set to a negative integer).
Remarks
See Also