Within a cell array, how can I look for cells that contain a certain element, in addition to other elements I am not looking for?

조회 수: 1 (최근 30일)
For example, let's say I have a cell array:
Z={'abcde','atg';'va','rem';5,'a'}.
I want to find the positions (x,y) of all the cells that contain the letter 'a', among other letters that are in the same cell as well (I don't want to split the cell into 1 letter cells and then use strcmp).
Thanks

채택된 답변

Guillaume
Guillaume 2015년 2월 5일
Do you really have a numeric value in one of the cell of your cell array?
Anyway, strfind is the function you want
%only deal with strings
zwithonlystrings = Z(cellfun(@ischar, Z));
aposition = strfind(zwithonlystrings, 'a');
%if you want the result, the same shape as z:
aposinz = cell(size(Z));
aposinz(cellfun(@ischar, Z)) = aposition
  댓글 수: 3
Iddo Weiner
Iddo Weiner 2015년 2월 5일
OK just figured it out - the number is the position of 'a' within the cell.. Thanks for the help!
Guillaume
Guillaume 2015년 2월 5일
Yes, and if you have several a in the strings, you'll get an array of all their position in the cell.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by