Stats.Variance Method

Definition

Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Variance<T>(Vector<T>) Returns the variance of the elements of a vector.
Variance<T>(T[], Boolean) Returns the variance of the elements of an array.
Variance<T>(IEnumerable<T>, Boolean) Returns the variance of the elements of a sequence.
Variance<T>(ReadOnlySpan<T>, Boolean) Returns the variance of the elements of a span.

Variance<T>(Vector<T>)

Returns the variance of the elements of a vector.
C#
public static double Variance<T>(
	this Vector<T> values
)

Parameters

values  Vector<T>
A vector.

Type Parameters

T
The type of the elements of values.

Return Value

Double
The variance of the elements of values.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ArgumentNullException

values is null.

Variance<T>(T[], Boolean)

Returns the variance of the elements of an array.
C#
public static double Variance<T>(
	this T[] values,
	bool skipMissingValues = false
)

Parameters

values  T[]
An array of values.
skipMissingValues  Boolean  (Optional)
Optional. Specifies whether missing values should be excluded from the calculation. The default is false.

Type Parameters

T
The type of the elements of values.

Return Value

Double
The variance of the elements of values.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type T[]. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ArgumentNullException

values is null.

Variance<T>(IEnumerable<T>, Boolean)

Returns the variance of the elements of a sequence.
C#
public static double Variance<T>(
	IEnumerable<T> values,
	bool skipMissingValues = false
)

Parameters

values  IEnumerable<T>
An object that implements IEnumerable<Double>.
skipMissingValues  Boolean  (Optional)
Optional. Specifies whether missing values should be excluded from the calculation. The default is false.

Type Parameters

T
The type of the elements of values.

Return Value

Double
The variance of the elements of values.

Exceptions

ArgumentNullException

values is null.

Variance<T>(ReadOnlySpan<T>, Boolean)

Returns the variance of the elements of a span.
C#
public static double Variance<T>(
	this ReadOnlySpan<T> values,
	bool skipMissingValues = false
)

Parameters

values  ReadOnlySpan<T>
A span of values.
skipMissingValues  Boolean  (Optional)
Optional. Specifies whether missing values should be excluded from the calculation. The default is false.

Type Parameters

T
The type of the elements of values.

Return Value

Double
The variance of the elements of values.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ReadOnlySpan<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ArgumentNullException

values is null.

See Also