How to compare two different cell arrays ?

조회 수: 495 (최근 30일)
vish
vish 2011년 2월 8일
댓글: Walter Roberson 2019년 5월 24일
I would like to know if there is any way by which I can compare all the elements and remove the matched elements if not needed.
eg : a = the, he, hate
b = he, hate
so c should be equal to the.
PS: I have tried string comparision method but, unfortunately they eliminate the 'he' from 'the' thus giving the output as only 't'.
Thank you, vish
  댓글 수: 1
Igor Fedorov
Igor Fedorov 2016년 5월 3일
Have you tried the function setdiff()?

댓글을 달려면 로그인하십시오.

채택된 답변

Kenneth Eaton
Kenneth Eaton 2011년 2월 8일
The SETDIFF function does what you want. It will give you the values in one set (i.e. cell array) that are not present in another set:
>> a = {'the', 'he', 'hate'};
>> b = {'he', 'hate'};
>> c = setdiff(a,b)
c =
'the'
  댓글 수: 5
Elvira Cordova
Elvira Cordova 2019년 5월 24일
Suppose I have the following:
a = { 'the', 'he', 'hate'}
b = { 'he', 'hate', 'she' }
And I want to obtain something like the following:
c = 'the'
d = 'she'
Is it possible with
setdiff
?
Walter Roberson
Walter Roberson 2019년 5월 24일
c = setdiff(a,b);
d = setdiff(b,a);

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Oleg Komarov
Oleg Komarov 2011년 2월 8일
a = {'the', 'he', 'hate'};
b = {'he', 'hate'};
ismember(a,b)
Oleg

Remus
Remus 2011년 8월 11일
What if I have two cell arrays with each array element continuing some structure with a combination of real elements and strings. i.e. A = {struct1,struct2,...} B = {struct1,struct2,...} here each struct can be of the type : structX.member1= ... (string/number) structX.member2= ... (string/number) ... Is there a way to compare the two cel arrays. dismember or setdiff only looks for strings so it won't work. Thanks Remus
  댓글 수: 10
chocho
chocho 2017년 3월 10일
Stephen Cobeldick thanks bro,but in my case i have a cell array inside another cell array i.e cell 1 627*1 (row=627 and col=1) and inside each row (from 1 to 627 ) i have 1*3 cell! .

댓글을 달려면 로그인하십시오.

카테고리

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

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by