How can I remove an entire row of zeros in a matrix?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dario
le 8 Mar 2018
Modifié(e) : David Fletcher
le 8 Mar 2018
If I have a matrix like this one:
45 23 54
0 0 0
9 3 32
How can I remove the second row and obtain this matrix?
45 23 54
9 3 32
0 commentaires
Réponse acceptée
David Fletcher
le 8 Mar 2018
Modifié(e) : David Fletcher
le 8 Mar 2018
a=[45 23 54;0 0 0;9 3 32];
zero=a==0;
ind=all(zero,2);
a(ind,:)=[]
Presumably the entire row has to have zero in every column for it to be removed
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!