Stats.Variance Method
Definition
Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
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.
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
DoubleThe 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
Argument | values is null. |
Variance<T>(T[], Boolean)
Returns the variance of the elements of an array.
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
DoubleThe 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
Argument | values is null. |
Variance<T>(IEnumerable<T>, Boolean)
Returns the variance of the elements of a sequence.
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
DoubleThe variance of the elements of values.
Exceptions
Argument | values is null. |
Variance<T>(ReadOnlySpan<T>, Boolean)
Returns the variance of the elements of a span.
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
DoubleThe 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
Argument | values is null. |