Other uses of the unique function

1 次查看(过去 30 天)
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
unique(a,'rows')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Cell Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by