Select a specific row for a cell array according to it's class
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Alex
el 13 de Dic. de 2014
Comentada: Guillaume
el 13 de Dic. de 2014
Hello everyone, i have a cell array like this: 15000 - class1 13890 - class2 15990 - class 3 187774 class3 124699 class2 78909 class1. I want to extract the first class1 row ,only the first!! How can i do this??
0 comentarios
Respuesta aceptada
Image Analyst
el 13 de Dic. de 2014
Where is the class stored, and is it a string like "class1" or a number like 1? What does this show when you run it
whos yourCellArray
celldisp(yourCellArray)
Have you tried using ismember() to locate what rows in your cell array match a certain string like 'class3'?
2 comentarios
Guillaume
el 13 de Dic. de 2014
Alex,
it sounds like you are happy that Image Analyst's answer solved your problem since you've accepted it. It's not clear from your comment though.
As for your new question, you're better off starting a new one. Not many people read questions in comments, particularly if a question has been marked as answered.
When you ask your new question, do make it clearer by giving an example of inputs and expected outputs, as as asked I've no idea what the problem is.
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!