correct syntax for appending number to word in for loop

Hello,
I was wondering if somebody could help me with a for loop.
In the for loop below, what would be the correct syntax be to make the variable dt equal to dt1 in the first loop? How do you append a 1 onto the dt? So that dt = dt1?
Thank you for your help
Journeynumber=3;
dt1=2;
at1=4;
dt2=7;
at2=8;
for j=1:Journeynumber
dt = dt"j";
end

 採用された回答

Doug Hull
Doug Hull 2013 年 11 月 18 日

0 投票

for i = 1:10;
str = ['dt' num2str(i)]
end

1 件のコメント

John
John 2013 年 11 月 18 日
編集済み: John 2013 年 11 月 18 日
Thanks for your help.
How could I make the dt in the loop equal to the dt1 defined above (i.e. 2)?
At the moment dt = dt1 but what I want is dt1 = 2 in the loop.
Thanks

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

質問済み:

2013 年 11 月 18 日

編集済み:

2013 年 11 月 18 日

Community Treasure Hunt

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

Start Hunting!

Translated by