how i cab convert numbers into letters
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mohamuud hassan
le 2 Juin 2015
Modifié(e) : Stephen23
le 2 Juin 2015
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 commentaires
Réponse acceptée
Azzi Abdelmalek
le 2 Juin 2015
numbers12 ={3,6,12,1,1,3,26,20}
lettter=cellfun(@num2str,numbers12,'un',0)
Plus de réponses (1)
Shrirang
le 2 Juin 2015
Hi , You can use num2str command. e.g. numbers12 = num2str(numbers12 ) so your number array in char Hope this helps you.
0 commentaires
Voir également
Catégories
En savoir plus sur Data Type Conversion dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!