Stats.Population Kurtosis As 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
Population | Returns the kurtosis supplement of the elements of an array. |
Population | Returns the kurtosis supplement of the elements of an array. |
PopulationKurtosisAs<T, TResult>(Vector<T>)
Returns the kurtosis supplement of the elements of an array.
public static TResult PopulationKurtosisAs<T, TResult>(
this Vector<T> values
)
Parameters
Type Parameters
- T
- The type of the elements of values.
- TResult
- The type of the result.
Return Value
TResultThe 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
Argument | values is null. |
PopulationKurtosisAs<T, TResult>(ReadOnlySpan<T>, Boolean)
Returns the kurtosis supplement of the elements of an array.
public static TResult PopulationKurtosisAs<T, TResult>(
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.
- TResult
- The type of the result.
Return Value
TResultThe 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
Argument | values is null. |