how can i make an array of letters? is it possible
Afficher commentaires plus anciens
like i have
a=[1:26]
i want something like
a=[a:z]
Réponse acceptée
Plus de réponses (1)
ChristianW
le 2 Mar 2013
a = 1:26;
astr = char(96+a);
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!