Construct a GoodnessOfFitParameter instance for the specified parameter in the model.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public GoodnessOfFitParameter(
	int index,
	double value,
	int degreesOfFreedom,
	double standardError
)
Visual Basic (Declaration)
Public Sub New ( _
	index As Integer, _
	value As Double, _
	degreesOfFreedom As Integer, _
	standardError As Double _
)
Visual C++
public:
GoodnessOfFitParameter(
	int index, 
	double value, 
	int degreesOfFreedom, 
	double standardError
)

Parameters

index
Type: System..::.Int32
The index of the parameter (zero-based).
value
Type: System..::.Double
The value of the paramters.
degreesOfFreedom
Type: System..::.Int32
The degrees of freedom.
standardError
Type: System..::.Double
The standard error of the parameter.

See Also