how i cab convert numbers into letters
    8 次查看(过去 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!



