Stats.PopulationKurtosis Method

Definition

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

Overload List

PopulationKurtosis<T>(Vector<T>) Returns the kurtosis supplement of the elements of an array.
PopulationKurtosis<T>(T[], Boolean) Returns the kurtosis supplement of the elements of an array.
PopulationKurtosis<T>(IEnumerable<T>, Boolean) Returns the kurtosis supplement of a sequence.
PopulationKurtosis<T>(ReadOnlySpan<T>, Boolean) Returns the kurtosis supplement of the elements of an array.

PopulationKurtosis<T>(Vector<T>)

Returns the kurtosis supplement of the elements of an array.
C#
public static double PopulationKurtosis<T>(
	this Vector<T> values
)

Parameters

values  Vector<T>
A Double array.

Type Parameters

T
The type of the elements of values.

Return Value

Double
The kurtosis supplement 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.

PopulationKurtosis<T>(T[], Boolean)

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

Parameters

values  T[]
A Double array.
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 kurtosis supplement 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.

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

Returns the kurtosis supplement of a sequence.
C#
public static double PopulationKurtosis<T>(
	IEnumerable<T> values,
	bool skipMissingValues = false
)

Parameters

values  IEnumerable<T>
A Double array.
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 kurtosis supplement of the elements of values.

Exceptions

ArgumentNullException

values is null.

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

Returns the kurtosis supplement of the elements of an array.
C#
public static double PopulationKurtosis<T>(
	this ReadOnlySpan<T> values,
	bool skipMissingValues = false
)

Parameters

values  ReadOnlySpan<T>
A Double array.
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 kurtosis supplement 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