Clear Filters
Clear Filters

Hi, is it possible to count the number of ones in a matrix ?

242 views (last 30 days)
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??

Accepted Answer

Ahmet Cecen
Ahmet Cecen on 8 Apr 2016
Edited: Ahmet Cecen on 8 Apr 2016
sum(A(:) == 1);
  6 Comments
Walter Roberson
Walter Roberson on 21 Jun 2021
A = randi([0 1], 5, 5); A = xor(A,A.'); %random symmetric
A
A = 5×5 logical array
0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0
[r,c] = find(A);
mask = r>=c;
r = r(mask); c = c(mask);
[r,c]
ans = 4×2
4 1 5 1 5 2 5 3
or
[r,c] = find(tril(A))
r = 4×1
4 5 5 5
c = 4×1
1 1 2 3

Sign in to comment.

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!