Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How can I convert a string of alphabetical characters to a vector of their numerical equivalent ie A->1, B->2 etc

1 vue (au cours des 30 derniers jours)
Tim
Tim le 4 Déc 2013
Clôturé : MATLAB Answer Bot le 20 Août 2021
I need to find a way to quickly convert large lists of dictionary words into a vector of integers corresponding to the letters number in the alphabet (1-26). ie. 'BAT' -> [2 1 20]. What is the best way to achieve this result? Thanks in advance for your help!

Réponses (1)

dpb
dpb le 4 Déc 2013
>> double('BAT'-'@')
ans =
2 1 20
>>

Community Treasure Hunt

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

Start Hunting!

Translated by