how do you make an array with letters

34 ビュー (過去 30 日間)
Leah
Leah 2012 年 7 月 16 日
is there a function where instead of typing, A B C D E F .... there is a function that automatically makes an array from A through P?

回答 (3 件)

Wayne King
Wayne King 2012 年 7 月 16 日
編集済み: Wayne King 2012 年 7 月 16 日
Use char() with the ascii codes
char(65:70)
You may have to be aware of the locale settings though:
  1 件のコメント
Walter Roberson
Walter Roberson 2012 年 7 月 16 日
編集済み: Walter Roberson 2012 年 7 月 16 日
MATLAB is not supported on any system which does not have the capital Latin Alphabet letters consecutive to each other.
I do find fragments of hints that MATLAB might have been able to read EBCDIC files at one time (R14 timeframe), but it appears that MATLAB itself has only ever run on ASCII and ISO 8896-* and Unicode systems.
This rule only applies to the Latin Alphabet (letters used in English); alphabetic characters outside those might appear in strange orders.
Also, this ordering is not imposed by the C programming language, which requires only that '0' to '9' be consecutive.

サインインしてコメントする。


Walter Roberson
Walter Roberson 2012 年 7 月 16 日

Ryan
Ryan 2012 年 7 月 16 日
編集済み: Ryan 2012 年 7 月 16 日
letters = 'A':'P'; % According to this nifty iPhone Matlab Mobile app

カテゴリ

Help Center および File ExchangeMATLAB Mobile についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by