Borrar filtros
Borrar filtros

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

242 visualizaciones (últimos 30 días)
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??

Respuesta aceptada

Ahmet Cecen
Ahmet Cecen el 8 de Abr. de 2016
Editada: Ahmet Cecen el 8 de Abr. de 2016
sum(A(:) == 1);
  6 comentarios
Walter Roberson
Walter Roberson el 21 de Jun. de 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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by