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!