Click or drag to resize

MultipleFitCurveInfo(DoubleVector, DoubleVector, DoubleVector, FuncDoubleVector, Double, Double) Constructor

Constructs MultipleFitCurveInfo from the given information.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public MultipleFitCurveInfo(
	DoubleVector x,
	DoubleVector y,
	DoubleVector weights,
	Func<DoubleVector, double, double> parameterizedFunction
)

Parameters

x  DoubleVector
Independent x-values for the data set.
y  DoubleVector
Dependent y-values for the data set.
weights  DoubleVector
Weights to be applied to the y-values during the fit.
parameterizedFunction  FuncDoubleVector, Double, Double
Parameterized function for the data set.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if NOT all input vectors have the same length.
See Also