MATLAB: Matlab Spelling letter by letter code

addocodelettersMATLABreadspeakspeechspellingwords

Hi, I was wondering if there is any way i can create a code that does the spelling letter by letter of a given word. Thank you very much for your help.

Best Answer

One Way:
  1. Splits Words to Letters, like
>> word='Kalyan'
word =
'Kalyan'
>> num2cell(word)
ans =
1×6 cell array
{'K'} {'a'} {'l'} {'y'} {'a'} {'n'}
2. Next: Text to speech of individual cell elements. There are so many threads avaliable in this forumn related to text to sppech, you may try any as per your requirements-