initialize set of sequence variables in a loop
이전 댓글 표시
hi,
I want to initialize a set of sequence variables in a loop:
for i=1:5
Ti=i;
end
so I can have: T1=1; T2=2; T3=3; ...
is there is a way in matlab to do such a thing?
채택된 답변
추가 답변 (1개)
Chandrasekhar
2014년 4월 1일
Ti = [1:5];
is this what you are looking for?
댓글 수: 3
Sososasa
2014년 4월 1일
Chandrasekhar
2014년 4월 1일
for i = 1:5
eval(['T_' num2str(i) '=' num2str(i)]);
end
Sososasa
2014년 4월 2일
카테고리
도움말 센터 및 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!