Click or drag to resize

MultipleCurveFitFunction(Int32, IListInt32, IListFuncDoubleVector, 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. A default value of 1e-8 for 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
)

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.
See Also