Effacer les filtres
Effacer les filtres

How to remove redundant rows in a matrix

3 vues (au cours des 30 derniers jours)
Kyle
Kyle le 18 Août 2014
Réponse apportée : Guillaume le 18 Août 2014
Suppose a matrix
1 2
3 4
5 6
3 4
5 7
4 3
row 2, 4, 6 are redundant, so how can I just leave either of them, then the matrix writes
1 2
3 4
5 6
5 7
The actual matrix is quite large, so I will need an automatic routine. Thank you for all suggestions.

Réponse acceptée

Guillaume
Guillaume le 18 Août 2014
If the order of the elements in a row does not matter (i.e row 6 == row 4):
unique(sort(m, 2), 'rows')
is what you want. If it does, it's just:
unique(m, 'rows')

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating 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!

Translated by