omit zeros from matrix and have the shape of matrix
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
NA
le 14 Avr 2019
Réponse apportée : Kevin Rawson
le 14 Avr 2019
A=[0,0;0,0;0,0;1,2;2,5;5,7;7,8];
I want to omit zero from this matrix. result should be
New_A=[1,2;2,5;5,7;7,8];
I use this code
A(A==0) = [];
But giving me array.
0 commentaires
Réponse acceptée
Kevin Rawson
le 14 Avr 2019
If you are trying to get rid of rows with zeros:
A(all(A == 0, 2), :) = [];
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!