create a string like "AA";"BB";"CC";"DD", and so on

조회 수: 8 (최근 30일)
Alberto Acri
Alberto Acri 2023년 9월 24일
댓글: Dyuman Joshi 2023년 9월 24일
Hi! I would like to create a string like "AA";"BB";"CC";"DD",and so on.
The idea is similar to this:
letters_str = string(mat2cell('A':'Z',1,ones(1,26)))';
I would simply like to double the letters in 'letters_str'.

채택된 답변

Dyuman Joshi
Dyuman Joshi 2023년 9월 24일
str = string(char('AA' + repmat((0:25)',1,2)))
str = 26×1 string array
"AA" "BB" "CC" "DD" "EE" "FF" "GG" "HH" "II" "JJ" "KK" "LL" "MM" "NN" "OO" "PP" "QQ" "RR" "SS" "TT" "UU" "VV" "WW" "XX" "YY" "ZZ"
  댓글 수: 1
Dyuman Joshi
Dyuman Joshi 2023년 9월 24일
Another idea -
str = string(('A':'Z')');
str = join([str str],'')
str = 26×1 string array
"AA" "BB" "CC" "DD" "EE" "FF" "GG" "HH" "II" "JJ" "KK" "LL" "MM" "NN" "OO" "PP" "QQ" "RR" "SS" "TT" "UU" "VV" "WW" "XX" "YY" "ZZ"

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by