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