Create changing variable names inside a loop
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
I want to create 120 new variables called:
RMS_BAM_186_Torque_8Nov_TIME
where TIME is a value from 0656 to 0856 <--- these are times, so max value is 0659, 0759, etc.
The function which will be used is:
RMS_BAM_186_Torque_8Nov_TIME = rms(BAM_186_Torque_8Nov_TIME)
where, the variables BAM_186_Torque_8Nov_TIME already exist.
Is there a way to program a loop which will do this, incrementing the TIME variable to step through all 120 iterations?
0 件のコメント
回答 (1 件)
Matt Fig
2012 年 11 月 9 日
Don't program this way in MATLAB! Please take the time to learn proper programming techniques for the language you are using. This helpful FAQ will answer your question and explain how to do it properly.
2 件のコメント
Walter Roberson
2012 年 11 月 9 日
The rest is just standard array indexing.
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!