필터 지우기
필터 지우기

How to create variable names

조회 수: 1 (최근 30일)
Avishka Karunaratne
Avishka Karunaratne 2016년 2월 18일
답변: Bob Thompson 2019년 6월 27일
for i = 1:10
Si = Example(i,:)
end
So I have this line of code and I want answers S1, S2, S3, S4 etc, however I only get Si for every answer and if i replace Si with S(i) or S{i} the code doesn't work , so how can I fix this ?
  댓글 수: 1
Stephen23
Stephen23 2016년 2월 18일
편집: Stephen23 2019년 6월 27일
Your code will be much simpler, more reliable, and much more efficient if you just use indexing into one variable instead of trying to create lots of separate variables.

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

답변 (1개)

Bob Thompson
Bob Thompson 2019년 6월 27일
I'm not sure why this got resurrected more than three years later, but I guess I might as well put an answer on it, for future searchers.
To the best of my knowledge, it is not possible to dynamically create variable names in Matlab. Ultimately this is a good thing though, because Stephen's comment is correct that the code will be better if variables are indexed into arrays, rather than large groups of individually named variables. Matrices, afterall, are what Matlab was created to work with.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by