Click or drag to resize

GoodnessOfFit(OneVariableFunctionFitterLevenbergMarquardtMinimizer, DoubleVector, DoubleVector, DoubleVector) Constructor

Constructs a GoodnessOfFit instance from the given OneVariableFunctionFitter which uses the LevenbergMarquardtMinimizer.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public GoodnessOfFit(
	OneVariableFunctionFitter<LevenbergMarquardtMinimizer> fitter,
	DoubleVector x,
	DoubleVector y,
	DoubleVector solution
)

Parameters

fitter  OneVariableFunctionFitterLevenbergMarquardtMinimizer
A one variable function fitter.
x  DoubleVector
The x data used to fit the model.
y  DoubleVector
The y data used to fit the model.
solution  DoubleVector
The solution found by the fitter.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown if x and y are not the same length.
See Also