Gets or sets the degrees of freedom of the sample in the denominator.

Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Property DenominatorDegreesOfFreedom As Double
C#
public double DenominatorDegreesOfFreedom { get; set; }
C++
public:
double DenominatorDegreesOfFreedom {
	double get ();
	void set (double value);
}

Value

The degrees of the sample in the denominator.

Remarks

This property can only be set if Sample2 is nullNothingnullptr. The degrees of freedom must be greater than or equal to one.

Exceptions

ExceptionCondition
InvalidOperationExceptionSample2 is not nullNothingnullptr.
ArgumentOutOfRangeExceptionThe new value is less than one.