How to retrieve unique columns in a matrix ?
35 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sai Teja Suggala
le 10 Mar 2022
Commenté : Stephen23
le 25 Jan 2023
I would like to retrieve all the unique columns in a matrix..
If my matrix =
1 -1 1 1
1 1 1 1
2 1 1 1
UniqueColumns =
1 -1 1
1 1 1
2 1 1
Thank you before hand.
0 commentaires
Réponse acceptée
Stephen23
le 10 Mar 2022
Modifié(e) : Stephen23
le 10 Mar 2022
A = [1,-1,1,1;1,1,1,1;2,1,1,1];
B = unique(A.','rows','stable').'
2 commentaires
Laxmikant Sharma
le 24 Jan 2023
Modifié(e) : Laxmikant Sharma
le 24 Jan 2023
What if you want the indeces too?
[B idx] = unique(A.', 'rows', 'stable').'
Not working!!!
Stephen23
le 25 Jan 2023
"What if you want the indeces too?"
A = [1,-1,1,1;1,1,1,1;2,1,1,1];
[B,idx] = unique(A.','rows','stable');
B = B.'
idx
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices 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!