Gets or sets the mean of the sample.
Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Property SampleMean As Double |
| C# |
|---|
public double SampleMean { get; set; } |
| C++ |
|---|
public: double SampleMean { double get (); void set (double value); } |
Value
The mean of the sample.
Remarks
This property can only be set if the Sample
has not been set.
Exceptions
| Exception | Condition |
|---|---|
| InvalidOperationException | An attempt is made to set the sample mean for a test based on a NumericalVariable sample. Set Sample to nullNothingnullptr before setting this property. |