According to what I read from here , the excess of the normal distribution should be around 3. However, when I use the matlab kurtosis function, I could not verify this:
data1 = randn(1,20000);
v1 = kurtosis(data1)
The kurtos of the normal distribution seems to be around 0. I was wondering what was wrong with him. Thank!
EDIT I am using MATLAB 2012b.
source
share