How to delete all repeat rows?

How to delete all repeat rows?
I mean all repeat rows, like :
A=
[0 4;
2 4;
0 4;
4 8;
3 4]
How to got new_A=
[2 4;
4 8;
3 4]

 采纳的回答

Rik
Rik 2020-5-19
编辑:Rik 2020-5-19
There is probably a more efficient way, but you can use unique() to get all first occurrences. Then you can use the second output to find all removed rows, which you can use as an input to setdiff.
A=[0 4;2 4;0 4;4 8;3 4;0 4];
[B,ind]=unique(A,'stable','rows');
ind=setdiff(1:size(A,1),ind);
B=setdiff(B,A(ind,:),'rows');

4 个评论

Yes, I'm looking at the official menu [CIA, is] = unique (a, 'rows')
But I haven't got any clue yet..
I have added example code.
Aaaaaawesome, thanks for the help!
Glad to be of help. If it solved your problem, please consider marking it as accepted answer. If not, feel free to comment with your remaining issues.

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品

版本

R2018b

标签

Community Treasure Hunt

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

Start Hunting!

Translated by