MATLAB: How to create a matrix for character-alphabets

alphabatsmatrixmatrix manipulationtranspose

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???

Best Answer

numbers=1:26;
letters=char(numbers+64)