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 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Iddo Weiner
am 5 Feb. 2015
Kommentiert: Guillaume
am 5 Feb. 2015
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
0 Kommentare
Akzeptierte Antwort
Guillaume
am 5 Feb. 2015
Do you really have a numeric value in one of the cell of your cell array?
%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 Kommentare
Guillaume
am 5 Feb. 2015
Yes, and if you have several a in the strings, you'll get an array of all their position in the cell.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!