Kurtosis ignoring 0s in matrix
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi there, I was wondering I have a matrix A of size 295x34. I want to do the kurtosis, but want to ignore all zeros.
How can I do this?
0 commentaires
Réponse acceptée
Andrei Bobrov
le 24 Juil 2012
Modifié(e) : Andrei Bobrov
le 24 Juil 2012
out = cellfun(@(x)kurtosis(x(x~=0)),num2cell(A,1));
or
s = sum(A~=0);
x1 = bsxfun(@minus,A,sum(A)./s);
x1(A == 0) = 0;
out = s.*sum(x1.^4)./ sum(x1.^2).^2;
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur MATLAB Report Generator dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!