DescriptiveStatistics.StandardDeviation Method |
Calculates the standard deviation of a list of doubles.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic static double StandardDeviation(
IList<double> dataList
)
Public Shared Function StandardDeviation (
dataList As IList(Of Double)
) As Double
public:
static double StandardDeviation(
IList<double>^ dataList
)
static member StandardDeviation :
dataList : IList<float> -> float
Parameters
- dataList
- Type: System.Collections.Generic.IList<Double>
The list of doubles to use to calculate the standard deviation.
Return Value
Type:
DoubleThe standard deviation value.
Exceptions
See Also