How to remove redundant rows in a matrix

2 views (last 30 days)
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.

Accepted Answer

Guillaume
Guillaume on 18 Aug 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')

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!