Matlab Spelling letter by letter code
2 ビュー (過去 30 日間)
古いコメントを表示
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.
1 件のコメント
Jan
2021 年 2 月 9 日
How is the given word given? As CHAR vector, string or as sound, written on paper?
採用された回答
KALYAN ACHARJYA
2021 年 2 月 9 日
編集済み: KALYAN ACHARJYA
2021 年 2 月 9 日
One Way:
- 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-
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Audio and Video Data についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!