Click or drag to resize

CurveFitDataSet(DoubleVector, DoubleVector) Constructor

Constructs a CurveFitDataSet from the given x and y value. All y-values are assumed to be equally weighted (all have an effective weight equal to 1).

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public CurveFitDataSet(
	DoubleVector x_values,
	DoubleVector y_values
)

Parameters

x_values  DoubleVector
Independent x-values.
y_values  DoubleVector
Dependent y-values.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if NOT all input vectors have the same length.
See Also