Result only printed on screen and show in the ans variable in the workspace
Mostrar comentarios más antiguos
This is my code, it read the entire text file and search for a specific word and returns the line that contains that words using token in a cell array. The problem is my assigned variables are not returned not showed in the workspace of my function....
ans: result
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 18 de En. de 2014
0 votos
You can use allwords() http://www.mathworks.com/matlabcentral/fileexchange/27184-allwords to parse your sentence into separate words. It's a heck of a lot easier than using strtok().
Then you can use strfind() to look for a particular word.
1 comentario
KnowledgeSeeker
el 18 de En. de 2014
Categorías
Más información sobre Whos en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!