How to count a specific string in a cell array?
56 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hadi Ghahremannezhad
el 23 de Mzo. de 2017
Comentada: BN
el 11 de Abr. de 2020
I'm trying to count the number of occurrences of a word in a cell array. For example if the cell is like this:
c = {'car' , 'tree' , 'car' , 'bag' , 'horse' , 'car' , 'tree'}
I want to count the number of occurrences of strings in the cell. For example if I search for the number of string 'water' it would result in *0*. Or if I search for the number of 'car', it would result in *3*. How can I do this?
Thanks in advance
0 comentarios
Respuesta aceptada
KSSV
el 23 de Mzo. de 2017
c = {'car' , 'tree' , 'car' , 'bag' , 'horse' , 'car' , 'tree'} ;
idx = strfind(c, 'car');
idx = find(not(cellfun('isempty', idx)));
N = length(idx)
2 comentarios
Ver también
Categorías
Más información sobre Design and Simulate SerDes Systems en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!