Gets or sets the degrees of freedom of the sample in the numerator.
Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Property NumeratorDegreesOfFreedom As Double |
| C# |
|---|
public double NumeratorDegreesOfFreedom { get; set; } |
| C++ |
|---|
public: double NumeratorDegreesOfFreedom { double get (); void set (double value); } |
Value
The degrees of the sample in the numerator.
Remarks
This property can only be set if Sample1
is nullNothingnullptr.
The degrees of freedom must be greater than or equal to one.
Exceptions
| Exception | Condition |
|---|---|
| InvalidOperationException | Sample1 is not nullNothingnullptr. |
| ArgumentOutOfRangeException | The new value is less than one. |