필터 지우기
필터 지우기

counting the number of non-zero or zero elements in a specific direction of an array

조회 수: 2 (최근 30일)
Hello there,
I have an 8x3x5 array, and would like to count its number of zeros and non-zeros across its 3rd dimension. In particular, I would like to get a 1x5 vectors that gives me the number of zero elements, and another 1x5 vectors showing the number of ones. I would appreciate if somebody can help me. Thanks.

채택된 답변

Star Strider
Star Strider 2015년 5월 3일
This seems to work:
NZ = sum(squeeze(sum(M==0,1))); % Zero Elements
NNz = sum(squeeze(sum(M~=0,1))); % Non-Zero Elements

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Sparse Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by