incrementing over the alphabet???

조회 수: 15 (최근 30일)
Justin Sung
Justin Sung 2019년 6월 26일
답변: Stephen23 2019년 6월 26일
Hi all,
This is probably a silly question, but I was wondering if there was a way to increment over the alphabet similarily to how we increment a number. something similar to this:
count = 1;
while 1
count = count + 1
end
except instead of outputing a number that runs until your computer explodes, it does it for the alphabet. An output like this:
a, b, c, d, ... z
Is this possible? or is there some sort of ASCII incrementing I could do? It would make my program very pretty, and I like pretty programs.
Thanks in advance.

채택된 답변

Jan
Jan 2019년 6월 26일
편집: Jan 2019년 6월 26일
count = 'a';
while 1
count = char(count + 1)
end

추가 답변 (1개)

Stephen23
Stephen23 2019년 6월 26일
>> for c = 'a':'z', disp(c), end
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
>>

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by