How to keep track of iterate numbers in variable names?
4 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
More Answers (2)
Azzi Abdelmalek
on 23 Sep 2012
Edited: Azzi Abdelmalek
on 23 Sep 2012
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 Comments
Rick Rosson
on 23 Sep 2012
Edited: Rick Rosson
on 23 Sep 2012
N = 4;
product = zeros(N,1);
for k = 1:N
product(k) = 3*k;
end
0 Comments
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!