how can i make an array of letters? is it possible

11 ビュー (過去 30 日間)
mary
mary 2013 年 3 月 2 日
like i have
a=[1:26]
i want something like
a=[a:z]

採用された回答

Walter Roberson
Walter Roberson 2013 年 3 月 2 日

その他の回答 (1 件)

ChristianW
ChristianW 2013 年 3 月 2 日
a = 1:26;
astr = char(96+a);

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by