find most frequent characters in a string
Afficher commentaires plus anciens
I have a string and I want to find the most frequent characters that appear in it. Is there anyway to do this with matlab?
Réponse acceptée
Plus de réponses (1)
David Young
le 13 Déc 2011
One way to get the commonest n characters, in descending order of frequency:
>> str = 'hello world';
>> n = 5; % number of characters to report
>> [~, c] = sort(hist(double(str), 0:255), 'descend');
>> f = char(c(1:n)-1)
f =
lo de
There may well be numerous better ways.
Catégories
En savoir plus sur Characters and Strings dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!