How do I get the indices of non-empty cells from a cellstr array?
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am using regexp to determine which cells in a cellstr array contain the characters of interest. Regexp returns a cell array with [1] where there is a match, and [] where it does not match. What is the best way to get the indices of the [1] (matching) cells? The find function will not operate on cell arrays. Using cell2mat returns an array with all empty [] cells removed.
Obviously I could loop through the thing and figure it out the hard way, but I'm guessing there is a simpler "MATLAB Way" to do it.
0 comentarios
Respuesta aceptada
Honglei Chen
el 25 de Jul. de 2012
Editada: Honglei Chen
el 25 de Jul. de 2012
Here is an example
x = {1,[]}
find(~cellfun(@isempty,x))
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings 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!