Click or drag to resize

MultipleCurveFitFunction(Int32, IListInt32, IListFuncDoubleVector, Double, Double, Double) Constructor

Creates a MultipleCurveFitFunction instance with the specied number of parameters and central difference delta for the given data sets with the given numbers of points. The central difference delta is the used in the central difference algorithm for computing Jacobians

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public MultipleCurveFitFunction(
	int numParameters,
	IList<int> numberOfPoinstPerCurve,
	IList<Func<DoubleVector, double, double>> parameterizedFunctions,
	double centralDifferenceDelta
)

Parameters

numParameters  Int32
The number of parameters in the parameterized functions.
numberOfPoinstPerCurve  IListInt32
A list contianing the number of data points in each data set. The ith element must correspond to the ith element of input list of parameterized functions.
parameterizedFunctions  IListFuncDoubleVector, Double, Double
A list of parameterized functions to fit to the data sets. The ith element of this list is fit to the ith data set.
centralDifferenceDelta  Double
The central difference delta is the used in the central difference algorithm for computing Jacobians
See Also