Click or drag to resize

GoodnessOfFit(PolynomialLeastSquares, DoubleVector, DoubleVector) Constructor

Constructs a GoodnessOfFit instance from the given PolynomialLeastSquares.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public GoodnessOfFit(
	PolynomialLeastSquares fit,
	DoubleVector x,
	DoubleVector y
)

Parameters

fit  PolynomialLeastSquares
A polynomial least squares fit.
x  DoubleVector
The x data used to fit the model.
y  DoubleVector
The y data used to fit the model.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown if x and y are not the same length.
See Also