<-- Previous || Up || Next -->

Kurtosis Excel Array Function
Math Statistics Class

Public Function KurtosisExcelArray( _
    ByRef vValues As Variant _
    ) As Variant

Returns the kurtosis of a distribution, as defined by Microsoft Excel.
More efficient version of the KurtosisExcel Function but with restrictions on the arguments it accepts.
Measures the relative peakedness or flatness of a distribution.

Examples:
    KurtosisExcelArray(Array(12, 34, 56, 78)) = -1.2
    KurtosisExcelArray(SampleData) = -0.066025135059001
See also:
    KurtosisExcel Function
    KurtosisArray Function
    SkewExcelArray Function
    StandardDeviationArray Function
    StandardDeviationPopulationArray Function
    VarianceArray Function
    VariancePopulationArray Function
    AverageArray Function
    KURT Function (Microsoft Excel)
vValues: Numeric-type array or Variant array containing only numeric elements. This function is NOT affected by the current setting of the StatVarType Property. It assumes that vValues is an array that contains only numeric elements.
Return value: Function returns the kurtosis of the numeric values. Function returns Null if there are fewer than four numeric values in the array, or if there is some type of error, such as if the argument is a Variant array which contains an Object reference or String.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.