nuget server logo nuget api documents
↑

API Docs / Microsoft.VisualBasic.Runtime / EnumerableStatsStandardDeviation

EnumerableStatsStandardDeviation

Full name Microsoft.VisualBasic.Math.Statistics.Linq.EnumerableStatsStandardDeviation Assembly Microsoft.VisualBasic.Runtime Members 3

01 Syntax

Microsoft.VisualBasic.Math.Statistics.Linq.EnumerableStatsStandardDeviation

02 Methods

NameOverloadsSummary
StandardDeviation 3 Computes the StandardDeviation of a sequence of System.Double values.

03 Members

method StandardDeviation #
StandardDeviation(IEnumerable(Of Double))

Computes the StandardDeviation of a sequence of System.Double values.

Parameters
NameTypeDescription
sourceIEnumerable(Of Double)

A sequence of System.Double values to calculate the StandardDeviation of.

Returns

The StandardDeviation of the sequence of values.

method StandardDeviation overload 2 #
StandardDeviation(IEnumerable(Of Nullable(Of Single)))

Computes the StandardDeviation of a sequence of nullable System.Single values.

Parameters
NameTypeDescription
sourceIEnumerable(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.

method StandardDeviation overload 3 #
StandardDeviation(IEnumerable(Of TSource), Func(Of TSource, Nullable(Of Decimal)))