How to create a matrix for character-alphabets
Ältere Kommentare anzeigen
i want to create alphabetic matrix like this [ a b c d d e f g h i j k } so how we create it???
3 Kommentare
per isakson
am 22 Dez. 2017
>> letters = num2cell('a':'k')
letters =
'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k'
Stephen23
am 22 Dez. 2017
>> 'a':'k'
ans = abcdefghijk
HASSAM SAJID
am 22 Dez. 2017
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!