Creating a for loop that adds a number to a letter

1 回表示 (過去 30 日間)
Brandon
Brandon 2013 年 3 月 7 日
Hi,
I'm trying to create a for loop that adds a number to a letter every time it loops. Here is my current code:
for count=1:99;
CM1=count;
CM2=count+1;
CM1X=['X',CM1]
CM2X=['X',CM2]
end
The problem that I am having is the X prints out fine, but the numbers print out as letters and then numbers and then characters. Here is what I am getting:
CM1X=
X
CM2X=
X .
.
.
CM1X=
X"
CM2X=
X/
and so on
Please help I'm not to sure what is going on.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 8 日
編集済み: Azzi Abdelmalek 2013 年 3 月 8 日
for k=1:99
s{k}=sprintf('X%d',k)
end

その他の回答 (2 件)

bym
bym 2013 年 3 月 8 日
for insight into what is going on try
char(1:99)
does it look familiar to what you are getting?

Brandon
Brandon 2013 年 3 月 8 日
編集済み: Brandon 2013 年 3 月 8 日
Here is the fixed code:
for count=1:99;
CM1=count;
CM2=count+1;
CM1X=sprintf('X%d',CM1)
CM2X=sprintf('X%d',CM2)
end
Thank you for your help!!

カテゴリ

Help Center および File ExchangeImage Data Workflows についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by