Statistics Toolbox
  Go to function:
    Search    Help Desk 
kurtosis    Examples   See Also

Sample kurtosis.

Syntax

Description

k = kurtosis(X) returns the sample kurtosis of X. For vectors,
kurtosis(x) is the kurtosis of the elements in the vector, x. For matrices kurtosis(X) returns the sample kurtosis for each column of X.

Kurtosis is a measure of how outlier-prone a distribution is. The kurtosis of the normal distribution is 3. Distributions that are more outlier-prone than the normal distribution have kurtosis greater than 3; distributions that are less outlier-prone have kurtosis less than 3.

The kurtosis of a distribution is defined as

where E(x) is the expected value of x.

Note: Some definitions of kurtosis subtract 3 from the computed value, so that the normal distribution has kurtosis of 0. The kurtosis function does not use this convention.

Example

See Also

mean, moment, skewness, std, var



[ Previous | Help Desk | Next ]