how can i make an array of letters? is it possible
Mostrar comentarios más antiguos
like i have
a=[1:26]
i want something like
a=[a:z]
Respuesta aceptada
Más respuestas (1)
ChristianW
el 2 de Mzo. de 2013
a = 1:26;
astr = char(96+a);
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!