Hi, is it possible to count the number of ones in a matrix ?
298 views (last 30 days)
Show older comments
nafila aytija
on 8 Apr 2016
Commented: Walter Roberson
on 21 Jun 2021
Example: Suppose we a have a matrix A=[1 0 0 1 0 0; 1 0 0 0 1 1]; how do I count the number of ones in this matrix??
0 Comments
Accepted Answer
Ahmet Cecen
on 8 Apr 2016
Edited: Ahmet Cecen
on 8 Apr 2016
sum(A(:) == 1);
6 Comments
Walter Roberson
on 21 Jun 2021
A = randi([0 1], 5, 5); A = xor(A,A.'); %random symmetric
A
[r,c] = find(A);
mask = r>=c;
r = r(mask); c = c(mask);
[r,c]
or
[r,c] = find(tril(A))
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!