Count the index of the array
이전 댓글 표시
Hi, I have a array like below: [0 0 0 0 0 0 0 0 0 10 0 0 0 0 15 0 17]
I want count how many numbers >0 in the array (like in this case count is 3 (because 10,15,&17). Can some please help me how to count this in matlab. Thanks in advance
채택된 답변
추가 답변 (2개)
Shoaibur Rahman
2014년 12월 20일
A=[0 0 0 0 0 0 0 0 0 10 0 0 0 0 15 0 17];
sum(A>0)
Javaid Iqbal
2018년 12월 3일
1 개 추천
n=numel(A);
댓글 수: 1
madhan ravi
2018년 12월 3일
no this would give you total number of elements in the array
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!