How to delete all repeat rows?

조회 수: 1 (최근 30일)
Wang Jack
Wang Jack 2020년 5월 19일
댓글: Rik 2020년 5월 22일
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
Wang Jack
Wang Jack 2020년 5월 22일
Aaaaaawesome, thanks for the help!
Rik
Rik 2020년 5월 22일
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개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by