User-supplied subroutine which calculates the functions to minimize.
            Calculates numberOfYs functions dependent on numberOfParameter parameters and
            returns the calculated y values in array ys. The value of info should
            not be changed unless  the user wants to terminate execution of LevenbergMarquardtFit.
            In this case set iflag to a negative integer.
            
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic delegate void LMFunction(
	int numberOfYs,
	int numberOfParameter,
	double[] parameter,
	double[] ys,
	ref int info
)
Parameters
- numberOfYs  Int32
 -  
 - numberOfParameter  Int32
 -  
 - parameter  Double
 -  
 - ys  Double
 -  
 - info  Int32
 -  
 
See Also