How can I find the most frequent character in say a list of words (cell array of strings)?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How can I find the most frequent character in say a list of words (cell array of strings)?
For example a list like: hello, what, is, your, name,
0 commentaires
Réponse acceptée
Niko
le 4 Nov 2015
Are you looking for the most frequent character in each word? if so you can do
cellfun(@mode,{'hello','what','is','your','name'})
which gives you the string 'laioa'.
or if you want the most frequent character in all words,
mode(strjoin({'hello','what','is','your','name'},''))
gives you the character 'a'.
2 commentaires
Niko
le 4 Nov 2015
You don't need the braces, so something like
cellfun(@mode,dictionary)
will work.
Niko
le 5 Nov 2015
if you have
dictionary={'hello','what','is','your','name'};
index=[0,1,1,0,1];
then
dictionary(logical(index))
will give you {'what','is','name'}.
I'm not sure if this is what you are asking...
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Characters and Strings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!