How to retrieve unique columns in a matrix ?
35 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Sai Teja Suggala
il 10 Mar 2022
Commentato: Stephen23
il 25 Gen 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 Commenti
Risposta accettata
Stephen23
il 10 Mar 2022
Modificato: Stephen23
il 10 Mar 2022
A = [1,-1,1,1;1,1,1,1;2,1,1,1];
B = unique(A.','rows','stable').'
2 Commenti
Laxmikant Sharma
il 24 Gen 2023
Modificato: Laxmikant Sharma
il 24 Gen 2023
What if you want the indeces too?
[B idx] = unique(A.', 'rows', 'stable').'
Not working!!!
Stephen23
il 25 Gen 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
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping Matrices 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!