Table of Contents

Method StandardDeviationPopulation

Namespace
MongoDB.Driver.Linq
Assembly
MongoDB.Driver.dll

StandardDeviationPopulation(IEnumerable<int>)

Computes the population standard deviation of a sequence of values.

public static double StandardDeviationPopulation(this IEnumerable<int> source)

Parameters

source IEnumerable<int>

A sequence of values to calculate the population standard deviation of.

Returns

double

The population standard deviation of the sequence of values.

StandardDeviationPopulation(IEnumerable<int?>)

Computes the population standard deviation of a sequence of values.

public static double? StandardDeviationPopulation(this IEnumerable<int?> source)

Parameters

source IEnumerable<int?>

A sequence of values to calculate the population standard deviation of.

Returns

double?

The population standard deviation of the sequence of values.

StandardDeviationPopulation(IEnumerable<long>)

Computes the population standard deviation of a sequence of values.

public static double StandardDeviationPopulation(this IEnumerable<long> source)

Parameters

source IEnumerable<long>

A sequence of values to calculate the population standard deviation of.

Returns

double

The population standard deviation of the sequence of values.

StandardDeviationPopulation(IEnumerable<long?>)

Computes the population standard deviation of a sequence of values.

public static double? StandardDeviationPopulation(this IEnumerable<long?> source)

Parameters

source IEnumerable<long?>

A sequence of values to calculate the population standard deviation of.

Returns

double?

The population standard deviation of the sequence of values.

StandardDeviationPopulation(IEnumerable<float>)

Computes the population standard deviation of a sequence of values.

public static float StandardDeviationPopulation(this IEnumerable<float> source)

Parameters

source IEnumerable<float>

A sequence of values to calculate the population standard deviation of.

Returns

float

The population standard deviation of the sequence of values.

StandardDeviationPopulation(IEnumerable<float?>)

Computes the population standard deviation of a sequence of values.

public static float? StandardDeviationPopulation(this IEnumerable<float?> source)

Parameters

source IEnumerable<float?>

A sequence of values to calculate the population standard deviation of.

Returns

float?

The population standard deviation of the sequence of values.

StandardDeviationPopulation(IEnumerable<double>)

Computes the population standard deviation of a sequence of values.

public static double StandardDeviationPopulation(this IEnumerable<double> source)

Parameters

source IEnumerable<double>

A sequence of values to calculate the population standard deviation of.

Returns

double

The population standard deviation of the sequence of values.

StandardDeviationPopulation(IEnumerable<double?>)

Computes the population standard deviation of a sequence of values.

public static double? StandardDeviationPopulation(this IEnumerable<double?> source)

Parameters

source IEnumerable<double?>

A sequence of values to calculate the population standard deviation of.

Returns

double?

The population standard deviation of the sequence of values.

StandardDeviationPopulation(IEnumerable<decimal>)

Computes the population standard deviation of a sequence of values.

public static decimal StandardDeviationPopulation(this IEnumerable<decimal> source)

Parameters

source IEnumerable<decimal>

A sequence of values to calculate the population standard deviation of.

Returns

decimal

The population standard deviation of the sequence of values.

StandardDeviationPopulation(IEnumerable<decimal?>)

Computes the population standard deviation of a sequence of values.

public static decimal? StandardDeviationPopulation(this IEnumerable<decimal?> source)

Parameters

source IEnumerable<decimal?>

A sequence of values to calculate the population standard deviation of.

Returns

decimal?

The population standard deviation of the sequence of values.

StandardDeviationPopulation<TSource>(IEnumerable<TSource>, Func<TSource, int>)

Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

public static double StandardDeviationPopulation<TSource>(this IEnumerable<TSource> source, Func<TSource, int> selector)

Parameters

source IEnumerable<TSource>

A sequence of values to calculate the population standard deviation of.

selector Func<TSource, int>

A transform function to apply to each element.

Returns

double

The population standard deviation of the sequence of values.

Type Parameters

TSource

The type of the elements of source.

StandardDeviationPopulation<TSource>(IEnumerable<TSource>, Func<TSource, int?>)

Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

public static double? StandardDeviationPopulation<TSource>(this IEnumerable<TSource> source, Func<TSource, int?> selector)

Parameters

source IEnumerable<TSource>

A sequence of values to calculate the population standard deviation of.

selector Func<TSource, int?>

A transform function to apply to each element.

Returns

double?

The population standard deviation of the sequence of values.

Type Parameters

TSource

The type of the elements of source.

StandardDeviationPopulation<TSource>(IEnumerable<TSource>, Func<TSource, long>)

Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

public static double StandardDeviationPopulation<TSource>(this IEnumerable<TSource> source, Func<TSource, long> selector)

Parameters

source IEnumerable<TSource>

A sequence of values to calculate the population standard deviation of.

selector Func<TSource, long>

A transform function to apply to each element.

Returns

double

The population standard deviation of the sequence of values.

Type Parameters

TSource

The type of the elements of source.

StandardDeviationPopulation<TSource>(IEnumerable<TSource>, Func<TSource, long?>)

Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

public static double? StandardDeviationPopulation<TSource>(this IEnumerable<TSource> source, Func<TSource, long?> selector)

Parameters

source IEnumerable<TSource>

A sequence of values to calculate the population standard deviation of.

selector Func<TSource, long?>

A transform function to apply to each element.

Returns

double?

The population standard deviation of the sequence of values.

Type Parameters

TSource

The type of the elements of source.

StandardDeviationPopulation<TSource>(IEnumerable<TSource>, Func<TSource, float>)

Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

public static float StandardDeviationPopulation<TSource>(this IEnumerable<TSource> source, Func<TSource, float> selector)

Parameters

source IEnumerable<TSource>

A sequence of values to calculate the population standard deviation of.

selector Func<TSource, float>

A transform function to apply to each element.

Returns

float

The population standard deviation of the sequence of values.

Type Parameters

TSource

The type of the elements of source.

StandardDeviationPopulation<TSource>(IEnumerable<TSource>, Func<TSource, float?>)

Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

public static float? StandardDeviationPopulation<TSource>(this IEnumerable<TSource> source, Func<TSource, float?> selector)

Parameters

source IEnumerable<TSource>

A sequence of values to calculate the population standard deviation of.

selector Func<TSource, float?>

A transform function to apply to each element.

Returns

float?

The population standard deviation of the sequence of values.

Type Parameters

TSource

The type of the elements of source.

StandardDeviationPopulation<TSource>(IEnumerable<TSource>, Func<TSource, double>)

Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

public static double StandardDeviationPopulation<TSource>(this IEnumerable<TSource> source, Func<TSource, double> selector)

Parameters

source IEnumerable<TSource>

A sequence of values to calculate the population standard deviation of.

selector Func<TSource, double>

A transform function to apply to each element.

Returns

double

The population standard deviation of the sequence of values.

Type Parameters

TSource

The type of the elements of source.

StandardDeviationPopulation<TSource>(IEnumerable<TSource>, Func<TSource, double?>)

Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

public static double? StandardDeviationPopulation<TSource>(this IEnumerable<TSource> source, Func<TSource, double?> selector)

Parameters

source IEnumerable<TSource>

A sequence of values to calculate the population standard deviation of.

selector Func<TSource, double?>

A transform function to apply to each element.

Returns

double?

The population standard deviation of the sequence of values.

Type Parameters

TSource

The type of the elements of source.

StandardDeviationPopulation<TSource>(IEnumerable<TSource>, Func<TSource, decimal>)

Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

public static decimal StandardDeviationPopulation<TSource>(this IEnumerable<TSource> source, Func<TSource, decimal> selector)

Parameters

source IEnumerable<TSource>

A sequence of values to calculate the population standard deviation of.

selector Func<TSource, decimal>

A transform function to apply to each element.

Returns

decimal

The population standard deviation of the sequence of values.

Type Parameters

TSource

The type of the elements of source.

StandardDeviationPopulation<TSource>(IEnumerable<TSource>, Func<TSource, decimal?>)

Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.

public static decimal? StandardDeviationPopulation<TSource>(this IEnumerable<TSource> source, Func<TSource, decimal?> selector)

Parameters

source IEnumerable<TSource>

A sequence of values to calculate the population standard deviation of.

selector Func<TSource, decimal?>

A transform function to apply to each element.

Returns

decimal?

The population standard deviation of the sequence of values.

Type Parameters

TSource

The type of the elements of source.