Finding 5th to 15th central moment

3 visualizzazioni (ultimi 30 giorni)
Hello everybody, please help me i want to find 5th to 15th central moments of random 7×5 matrix , i dont know how to do it.I tried using moment(x,4)./(std(x)).^4 and cross checked it with kurtosis but this gave me wrong answer.

Risposta accettata

Thiago Henrique Gomes Lobato
The std function has a bias correction which the kurtosis doesn't, if you remove it you get the same result:
rng(31415)
A = randn(7,5);
moment(A,4)./(std(A,1)).^4 % the ,1 in the standard deviation removes the bias correction
kurtosis(A)
ans =
1.4861 1.9326 1.2991 2.0221 3.1096
ans =
1.4861 1.9326 1.2991 2.0221 3.1096
Calculating the other central moments should be then trivial, you just have to known how you want define your standard deviation.

Più risposte (0)

Categorie

Scopri di più su Dynamic System Models in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by