Azzera filtri
Azzera filtri

How to remove redundant rows in a matrix

3 visualizzazioni (ultimi 30 giorni)
Kyle
Kyle il 18 Ago 2014
Risposto: Guillaume il 18 Ago 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.

Risposta accettata

Guillaume
Guillaume il 18 Ago 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')

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating 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!

Translated by