Stats.Population Skewness Method
Definition
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Population | Returns the skewness of the elements of an array. |
Population | Returns the skewness of the elements of an array. |
Population | Returns the skewness of the elements of an array. |
PopulationSkewness(Int32[])
Returns the skewness of the elements of an array.
public static double PopulationSkewness(
int[] values
)
Parameters
- values Int32[]
- An Int32 array.
Return Value
DoubleThe skewness of the elements of values.
Exceptions
ArgumentNullException | values is null. |
PopulationSkewness<T>(T[])
Returns the skewness of the elements of an array.
public static double PopulationSkewness<T>(
T[] values
)
Parameters
- values T[]
- A Double array.
Type Parameters
- T
Return Value
DoubleThe skewness of the elements of values.
Exceptions
ArgumentNullException | values is null. |
PopulationSkewness<T>(Vector<T>)
Returns the skewness of the elements of an array.
public static double PopulationSkewness<T>(
this Vector<T> values
)
Parameters
- values Vector<T>
- A vector.
Type Parameters
- T
Return Value
DoubleThe skewness 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. |