find cells based on vector

조회 수: 1 (최근 30일)
skysky2000
skysky2000 2017년 7월 12일
댓글: skysky2000 2017년 7월 12일
Dear all, I've problem with the cell,
a= {[67 8 33] [1 2 3 5] [2 88 5] [3 66 7 90] [3] [66 78 12 1 44 6 77 3] [ 91 92 100]}, how to find each cell based on vector d=[ 3 1 77 100]. answer expect it is:
b= {[1 2 3 5] [3 66 7 90] [3] [66 78 12 1 44 6 77 3] [66 78 12 1 44 6 77 3] [ 91 92 100]} Thanks a lot,you always help me.
  댓글 수: 1
Jan
Jan 2017년 7월 12일
편집: Jan 2017년 7월 12일
You forgot to explain the procedure. The readers have to guess the relation between a, d and b, but this is not obvious.
What have you tried so far? You have asked many questions concerning cells now and did not show your own effort.

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

채택된 답변

Guillaume
Guillaume 2017년 7월 12일
At a guess (see Jan's comment):
a = {[67 8 33] [1 2 3 5] [2 88 5] [3 66 7 90] [3] [66 78 12 1 44 6 77 3] [ 91 92 100]}
d = [3 1 77 100];
b = a(cellfun(@(cellcontent) any(ismember(d, cellcontent)), a))
  댓글 수: 1
skysky2000
skysky2000 2017년 7월 12일
Thanks a lot Guillaume, its work fine.

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by