Filter löschen
Filter löschen

finding most common letter in a string

1 Ansicht (letzte 30 Tage)
Max
Max am 12 Nov. 2015
Bearbeitet: Azzi Abdelmalek am 12 Nov. 2015
say I have a string y='asdqwdqwdasasdasdaasasdwdqwd' How do I find the letter that occurs the most in y which is clearly 'a' so have something like mostcommonletter='a'

Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 12 Nov. 2015
Bearbeitet: Azzi Abdelmalek am 12 Nov. 2015
y='asdqwdqwdasasdasdaasasdwdqwd'
[ii,jj,kk]=unique(y)
a=accumarray(kk,1)
idx=a==max(a)
out=ii(idx)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by