Gets or sets the standard deviation of the sample.
Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Property SampleStandardDeviation As Double |
| C# |
|---|
public double SampleStandardDeviation { get; set; } |
| C++ |
|---|
public: double SampleStandardDeviation { double get (); void set (double value); } |
Value
The standard deviation of the sample.
Remarks
This property can only be set if the Sample
has not been set. The standard deviation must be greater than or equal to zero.
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. |
| ArgumentOutOfRangeException | The new standard deviation is less than zero. |