Count the number of non-zero elements of a column/row of a 2D-Matrix?

조회 수: 80 (최근 30일)
Ines
Ines 2012년 5월 3일
편집: Souarv De 2023년 5월 23일
Hello everyone,
I have a 2D Matrix and I want to make Matlab count the number of non-zero Elements within one row, is there a straightforward way to do this? Many thanks

채택된 답변

James Tursa
James Tursa 2012년 5월 3일
sum(X(row_number,:)~=0)

추가 답변 (2개)

Thomas
Thomas 2012년 5월 3일
Try:
a=[3 0 0;0 2 0; 1 0 4] %input matrix
sum(a~=0,2) % no. of nozero elements in each row

Muhammad Ilias Amin
Muhammad Ilias Amin 2014년 5월 12일
a = [3 0 0; 0 2 0; 1 0 0];
To get the no of non zero columns: sum( all( a == 0, 1 ) );
To get the no of non zero rows: sum( all( a == 0, 2 ) );
  댓글 수: 1
Souarv De
Souarv De 2023년 5월 23일
편집: Souarv De 2023년 5월 23일
A small correction in the text part to the above two lines code is that it will give no of zero columns and rows, not non-zero columns and non-zero rows.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by