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