Delete duplicated row in a matrix

조회 수: 1 (최근 30일)
Marco
Marco 2013년 6월 25일
I have two matrix like this:
a=[1 2 3; 2 1 3; 2 2 4;2 3 6;2 4 5;3 7 7;3 6 6]
b=[1 2 5;2 2 5;2 3 6;2 4 7;3 6 7]
I want delete, without change order, the duplicated rows without consider third column, but only respect column 1 and 2.
So the output would be: [2 1 3; 3 7 7]

채택된 답변

Tom
Tom 2013년 6월 25일
I = ~ismember(a(:,1:2),b(:,1:2),'rows');
a = a(I,:)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by