How to find in cell structures?

조회 수: 4 (최근 30일)
JamJan
JamJan 2019년 8월 7일
댓글: JamJan 2019년 8월 7일
I have the following cell structure:
1x30 double
1x23 double
1x23 double
1x23 double
1x23 double
1x23 double
1x23 double
1x25 double
1x35 double
I want to find whether a number is present in one of these and want to know the index of that. So for instance the number 5 is present in double 1, 5 and 7, so the output should be [1 5 7]. Can this be done?
  댓글 수: 4
KSSV
KSSV 2019년 8월 7일
Read about ismember, find.
Adam
Adam 2019년 8월 7일
편집: Adam 2019년 8월 7일
Off the top of my head, something like this may work:
find( cellfun( @(x) any( find( x == 5 ) ), myCell, 'UniformOutput', false ) )
where myCell is your cell array.
At least it may give you ideas to get to the right solution, though I'm sure someone else will quickly come along with a correct or better solution if this is not it!

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

채택된 답변

madhan ravi
madhan ravi 2019년 8월 7일
편집: madhan ravi 2019년 8월 7일
v=cellfun(@(x) any( x == 5 ), yourcell);
Wanted = find(v) % Adam was almost right , but a minute tweak
  댓글 수: 3
madhan ravi
madhan ravi 2019년 8월 7일
Thank you Stephen!
JamJan
JamJan 2019년 8월 7일
Thank you guys!

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

추가 답변 (0개)

카테고리

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