Create changing variable names inside a loop

조회 수: 1 (최근 30일)
Matthew
Matthew 2012년 11월 9일
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?

답변 (1개)

Matt Fig
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
Matthew
Matthew 2012년 11월 9일
편집: Matthew 2012년 11월 9일
My data comes in from 120 .CSV files, which I read in using...
BAM_186_Torque_8Nov_0656 = xlsread('8NOV12 -- 0656.CSV',1,'G15:G1014');
Is there a way to create a 120x1000 matrix by reading every CSV?
The first line would contain all 1000 data points from the first CSV The second line would contain all 1000 data points from the second CSV
etc?

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

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by