필터 지우기
필터 지우기

joint find statement using ismember & ~ismember

조회 수: 1 (최근 30일)
wesso Dadoyan
wesso Dadoyan 2016년 5월 18일
편집: Stephen23 2016년 5월 18일
Hi,
I wrote the following code: xe=find(ismember(ID,IDA) & ~ismember(DateID,DateIDA)); but it is failing to capture what I want I want to find the observations where the IDs matches (i,e the ids in the ID column exist in the IDA column but the dates respective of the ID column don't exist in the dates respective to IDA column) example: ID=[ 1;2;....20]; IDA=[1;2;....40]; DateID=[729115;729206;.....729298] DateIDA=[729115;733393;.....729298]
what i want xe to find is that for ID=2 & date=729206 I don't have an IDA=2 with a date=729206. I would appreciate any help in this joint find statement

채택된 답변

Stephen23
Stephen23 2016년 5월 18일
편집: Stephen23 2016년 5월 18일
It works fine for me, using your sample data:
>> ID = [1;2;20];
>> IDA = [1;2;40];
>> DateID = [729115;729206;729298];
>> DateIDA = [729115;733393;729298];
>> ismember(ID,IDA) & ~ismember(DateID,DateIDA)
ans =
0
1
0
You might need to round your date numbers to integer before making this comparison.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by