StandardDeviation GetStandardDeviation Method (List Double , Double)CleanCode C# Libraries v1.2.03 API
Gets the standard deviation of a list.

Namespace: CleanCode.Math
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public static double GetStandardDeviation(
	List<double> list,
	double mean
)

Parameters

list
Type: OnlineSystem.Collections.Generic List OnlineDouble 
The list.
mean
Type: OnlineSystem Double
The mean.

Return Value

Standard deviation
Remarks

This version is slightly more efficient if you already have the mean of the list. GetStandardDeviation(List Double )
See Also