transforming a matrix to an array without one values???
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi all
I have a matrix having some values equal to one. I want to transform this matrix to an array without the one values.
how can I do this? for example a=[13 1 4; 45 23 1; 1 56 78] changed to b=[13 45 23 56 4 78]
cheers,
0 commentaires
Réponse acceptée
Wayne King
le 31 Déc 2011
a=[13 1 4; 45 23 1; 1 56 78];
indices = find(a==1);
a(indices) = [];
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrices and Arrays 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!