Find how many times a word appeared in matrix
Mostrar comentarios más antiguos
Hello, I'm trying to find out how many times a certain word appeared in a matrix. What command should i use?
Respuestas (1)
A = {'anna','bob','cedric','diana','anna'};
B = 'anna';
N = sum(strcmp(A,B));
Categorías
Más información sobre Characters and Strings 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!