How to identify the repeated elements in an array and delete those rows?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a matrix array like this:
1 100
2 200
3 200
4 200
5 500
And I want to identify the repeated elements on the right column, and delete the entire row of the matrix, to get something like this:
1 100
2 200
5 500
How can I do that?
0 commentaires
Réponses (2)
the cyclist
le 9 Avr 2023
Modifié(e) : the cyclist
le 9 Avr 2023
Here is one way:
M = [1 100;
2 200;
3 200;
4 200;
5 500];
[~,j] = unique(M(:,2));
out = M(j,:)
0 commentaires
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!