Sum of certain value in a matrix

I have a 241 x 340 matrix that contains only 1 and 0 value scattered over the matrix. My question is how can I calculate the sum value of 1 in the matrix? Thank You in advance. for example
A = [0 0 0 0 1 1 1 1 0 0 1 1 1 0; 1 1 1 0 0 1 1 1 0 0 0 1 1 0]

 Risposta accettata

out = sum(A(:))

3 Commenti

Thank you so much! worked like a charm
and one more, if I want the average of it, so i just change 'sum' to 'mean' is it?

Accedi per commentare.

Più risposte (2)

KL
KL il 3 Mag 2017
Modificato: KL il 3 Mag 2017
See Image Analyst's answer here
A = [0 0 0 0 1 1 1 1 0 0 1 1 1 0; 1 1 1 0 0 1 1 1 0 0 0 1 1 0]
edges = unique(A)
counts = histc(A(:), edges)

Categorie

Scopri di più su Sparse Matrices in Centro assistenza e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by