Click or drag to resize

GlobalCurveFitterGetMultipleCurveFitFunction(IListCurveFitDataSet, Double) Method

Constructs the MultipleCurveFitFunction used by the MultipleCurveFit class to compute parameter estimates. The given value for central difference delta is used by the central difference algorithm for computing Jacobians.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public MultipleCurveFitFunction GetMultipleCurveFitFunction(
	IList<CurveFitDataSet> dataSets,
	double centralDifferenceDelta
)

Parameters

dataSets  IListCurveFitDataSet
Datasets being fit.
centralDifferenceDelta  Double
Value for the central difference delta used by the central difference algorithm for computing Jacobians.

Return Value

MultipleCurveFitFunction
MultipleCurveFitFunction object. Minimizing the residuals of this function yields the global fit parameter estimates.
Remarks
Mostly for internal use. Library clients do need use this method when performing a global fit.
See Also