EnumerableStatsStandardDeviation
01 Syntax
Microsoft.VisualBasic.Math.Statistics.Linq.EnumerableStatsStandardDeviation
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| StandardDeviation | 3 | Computes the StandardDeviation of a sequence of System.Double values. |
03 Members
StandardDeviation(
IEnumerable(Of Double))Computes the StandardDeviation of a sequence of System.Double values.
Parameters
| Name | Type | Description |
|---|---|---|
source | IEnumerable(Of Double) | A sequence of System.Double values to calculate the StandardDeviation of. |
Returns
The StandardDeviation of the sequence of values.
StandardDeviation(
IEnumerable(Of Nullable(Of Single)))Computes the StandardDeviation of a sequence of nullable System.Single values.
Parameters
| Name | Type | Description |
|---|---|---|
source | IEnumerable(Of Nullable(Of Single)) | A sequence of nullable System.Single values to calculate the StandardDeviation of. |
Returns
The StandardDeviation of the sequence of values, or null if the source sequence is empty or contains only values that are null.
StandardDeviation(
IEnumerable(Of TSource), Func(Of TSource, Nullable(Of Decimal)))