OneSampleTTest.SampleStandardDeviation Property

Gets or sets the standard deviation of the sample.

Definition

Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public double SampleStandardDeviation { get; set; }

Property Value

Double
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

InvalidOperationExceptionAn attempt is made to set the sample mean for a test based on a Vector<T> sample. Set Sample to null before setting this property.
ArgumentOutOfRangeExceptionThe new standard deviation is less than zero.

See Also