how to count the number of non zero elements present in each row and column.
4 ビュー (過去 30 日間)
古いコメントを表示
If a=[3.6910 4.5873 0 0 0;
0 7.2707 0 0 3.7516;
0 0 0 0 0]
I want to count the number of non zero elements present in every row and column
I tried with the following command numel(a) where it gives the entire number of elements present in a.
Could anyone please help me on this.
2 件のコメント
採用された回答
Image Analyst
2019 年 6 月 6 日
Try this
zerosInColumn = sum(a ~= 0, 1);
zerosInRow = sum(a ~= 0, 2);
2 件のコメント
Image Analyst
2019 年 6 月 6 日
I answered a very very similar question that you asked here in this link
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!