how to count the number of non zero elements present in each row and column.
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
jaah navi
il 6 Giu 2019
Commentato: Image Analyst
il 6 Giu 2019
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 Commenti
Risposta accettata
Image Analyst
il 6 Giu 2019
Try this
zerosInColumn = sum(a ~= 0, 1);
zerosInRow = sum(a ~= 0, 2);
2 Commenti
Image Analyst
il 6 Giu 2019
I answered a very very similar question that you asked here in this link
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrices and Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!