How to keep track of iterate numbers in variable names?
조회 수: 4 (최근 30일)
이전 댓글 표시
How to create a unique variable for the outputs of a for loop?
So for example:
for k=1:4
product=k*3
end
I want to be able to distinguish the iterates and have a result like:
product1=3
product2=6
product3=9
product4=12
This is just a simple example, I need it for a much larger problem.
댓글 수: 0
채택된 답변
추가 답변 (2개)
Azzi Abdelmalek
2012년 9월 23일
편집: Azzi Abdelmalek
2012년 9월 23일
why not
for k=1:4
product(k)=k*3
end
or
for k=1:4
product.(sprintf('n%d',k))=k*3
end
댓글 수: 0
Rick Rosson
2012년 9월 23일
편집: Rick Rosson
2012년 9월 23일
N = 4;
product = zeros(N,1);
for k = 1:N
product(k) = 3*k;
end
댓글 수: 0
참고 항목
카테고리
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!