how i cab convert numbers into letters
4 ビュー (過去 30 日間)
古いコメントを表示
hello all how i can convert number which are stored in cell array in alphabet?
numbers12 = [3,6,12,1,1,3,26,20]
lettter={,,,,,}
0 件のコメント
採用された回答
Azzi Abdelmalek
2015 年 6 月 2 日
numbers12 ={3,6,12,1,1,3,26,20}
lettter=cellfun(@num2str,numbers12,'un',0)
その他の回答 (1 件)
Shrirang
2015 年 6 月 2 日
Hi , You can use num2str command. e.g. numbers12 = num2str(numbers12 ) so your number array in char Hope this helps you.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!