How to index a cell vector of strings?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a vector of cells, each one is 'x' or 'y'. How can I index them, similar to the "find" function? Thank you.
댓글 수: 4
Azzi Abdelmalek
2015년 6월 22일
suppose s={'x','a','x','y','b','b','c','y','y','x'}, what is the expected result?
채택된 답변
Azzi Abdelmalek
2015년 6월 22일
s={'a','b','x','c','d','x'}
idx=find(ismember(s,'x'))
댓글 수: 2
Azzi Abdelmalek
2015년 6월 22일
Maybe you need this
s={'x','a','x','y','b','b','c','y','y','x'}
idx=ismember(s,'x')
idy=ismember(s,'y')
outx=[s(idx)' num2cell(find(idx))']
outy=[s(idy)' num2cell(find(idy))']
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!