필터 지우기
필터 지우기

Simple Question ( for loop with differnt variables)

조회 수: 2 (최근 30일)
Max Müller
Max Müller 2014년 7월 15일
댓글: Max Müller 2014년 7월 15일
Heyho folks,
This is a really simple example for the Question I have.
for i=1:3
eval ( ['A' num2str(i) '=i'] )
end
generates A1 = 1 / A2 = 2 /A3 = 3
now i want to use these variables.....but how?
for i= 1:3
B = A{i} + 1
end %nope doesnt work
for i =1:3
B = ([A num2str(i)]) +1
end %nope doesnt work
............

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 7월 15일
편집: Azzi Abdelmalek 2014년 7월 15일
Why are you complicating things?
for i=1:3
A(i)=i
end
for i= 1:3
B(i) = A(i) + 1
end
  댓글 수: 4
Yoav Livneh
Yoav Livneh 2014년 7월 15일
If you want to use A1, A2, etc. you will have to continue using eval. I recommend switching to an array or cell array, or even a structure, in order to better access your data.
Max Müller
Max Müller 2014년 7월 15일
Thanks, Guys...it worked....guess i am going to sleep now.....

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

추가 답변 (0개)

카테고리

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