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