Subtraction for Matrix of Different Length

조회 수: 1 (최근 30일)
RDG
RDG 2013년 10월 28일
편집: Andrei Bobrov 2013년 10월 28일
x=[19 6 7; 45 9 11; 1 4 3; 9 7 6; 4 3 7; 44 1 7];
y=[1 4 3; 9 7 6];
How can I compute x-y?
The remains would be:
remains=[19 6 7; 45 9 11; 4 3 7; 44 1 7]
Thanks in advance.

채택된 답변

Andrei Bobrov
Andrei Bobrov 2013년 10월 28일
편집: Andrei Bobrov 2013년 10월 28일
[a,b] = setdiff(x,y,'rows');
[~,ii] = sort(b);
out = a(ii,:);
or
lb = ismember(x,y,'rows');
out = x(~lb,:);

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by