Effacer les filtres
Effacer les filtres

find sum of all the entries with value 0

2 vues (au cours des 30 derniers jours)
arun
arun le 29 Nov 2013
Commenté : Jos (10584) le 2 Déc 2013
I have a cell matrix of mat = [ 1 0 0 4;0 2 0 4], i want to find the sum of the all the entries having value 0. in the case of given example the entries having count 0 are 4; so sum will be 4. how can i do this.

Réponse acceptée

Matt J
Matt J le 29 Nov 2013
Modifié(e) : Matt J le 29 Nov 2013
  3 commentaires
Matt J
Matt J le 29 Nov 2013
Modifié(e) : Matt J le 29 Nov 2013
No, what I proposed
sum(~mat(:))
works indepedently of ndims(mat) and will save you additional function calls to sum().
arun
arun le 30 Nov 2013
okieee,sorry............... i got it.

Connectez-vous pour commenter.

Plus de réponses (1)

Jos (10584)
Jos (10584) le 30 Nov 2013
NNZ is the dedicated function to do this:
nnz(~mat)
  3 commentaires
John D'Errico
John D'Errico le 30 Nov 2013
Note that nnz(~mat) will be poor even for large sparse matrices, because if mat is sparse, then ~mat must create a large and rather dense logical matrix. Better then would be to use a form like:
numel(mat) - nnz(mat)
In my tests, for a large fairly sparse matrix like that generated by Matt in his comment, my form was the fastest.
Jos (10584)
Jos (10584) le 2 Déc 2013
Thanks, Matt and John, for the insights.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Systems of Nonlinear Equations dans Help Center et File Exchange

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by