MathExtensions.StdDeviation method (1 of 4)

Calculates the Standard Deviation (Sigma) of all the passed in values.

public static double StdDeviation(this IEnumerable<decimal> items)
parameter description
items IEnumerable of items to calculate the standard deviation of

Return Value

Standard deviaion of all the items passed in.

Exceptions

exception condition
ArgumentException Thrown if items doesn't contain at least 2 items.

See Also


MathExtensions.StdDeviation method (2 of 4)

Calculates the Standard Deviation (Sigma) of all the passed in values.

public static double StdDeviation(this IEnumerable<double> items)
parameter description
items IEnumerable of items to calculate the standard deviation of

Return Value

Standard deviaion of all the items passed in.

Exceptions

exception condition
ArgumentException Thrown if items doesn't contain at least 2 items.

See Also


MathExtensions.StdDeviation method (3 of 4)

Calculates the Standard Deviation (Sigma) of all the passed in values.

public static double StdDeviation(this IEnumerable<float> items)
parameter description
items IEnumerable of items to calculate the standard deviation of

Return Value

Standard deviaion of all the items passed in.

Exceptions

exception condition
ArgumentException Thrown if items doesn't contain at least 2 items.

See Also


MathExtensions.StdDeviation method (4 of 4)

Calculates the Standard Deviation (Sigma) of all the passed in values.

public static double StdDeviation(this IEnumerable<int> items)
parameter description
items IEnumerable of items to calculate the standard deviation of

Return Value

Standard deviaion of all the items passed in.

Exceptions

exception condition
ArgumentException Thrown if items doesn't contain at least 2 items.

See Also