rows which do not contain zero

6 visualizaciones (últimos 30 días)
Mate 2u
Mate 2u el 23 de Jul. de 2012
Hi all, I have a matrix D = 294x34. I want to output the number of rows which which may contain a number (so I want the the number of rows which are not all zeros).
Thank you.
  1 comentario
Mate 2u
Mate 2u el 23 de Jul. de 2012
I apologise, lets say for instant our D = [2,4; 5,0;4,4; 0,0; 3,0; 0,0]
output should be 4 as there were two rows full of only zeros.

Iniciar sesión para comentar.

Respuesta aceptada

Matt Kindig
Matt Kindig el 23 de Jul. de 2012
row = any(D,2);
rowCount = sum(row); %number of rows with non-zero elements

Más respuestas (2)

Nirmal
Nirmal el 23 de Jul. de 2012
Editada: Nirmal el 23 de Jul. de 2012
count=sum(sum(D==0,2)==0)
count will be the number of rows which are not all zeros in matrix D.

Ryan
Ryan el 23 de Jul. de 2012
Editada: Ryan el 23 de Jul. de 2012
row_numbers = find(sum(A,2) ~= 0);
number_of_rows = numel(row_numbers);

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by