Other uses of the unique function

I'd like to get a unique combo of the two columns. In my data set, both two columns are sorted, e.g.
a = [
1 2;
1 2;
1 3;
2 2;
2 2;
3 2;
3 3;
3 3;
3 4;
]
I would like to get the output as:
output = [
1 2;
1 3;
2 2;
3 2;
3 3;
3 4;
]
Does any experts know how to code? Thanks in advance!!

 채택된 답변

Paulo Silva
Paulo Silva 2011년 6월 12일

1 개 추천

unique(a,'rows')

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

질문:

Zoe
2011년 6월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by