Creating Dynamic variables for future use
11 views (last 30 days)
Show older comments
Hi.
I need to create variables for future use in a loop. For example, for i=1,2,...n, I need to save D1, D2,...,DN, where each Di is a vector with different dimension.
Can anybody help me?
Marco.
0 Comments
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 12 Sep 2012
Edited: Azzi Abdelmalek
on 12 Sep 2012
for k=1:4
v.(sprintf('D%d',k))=rand(k,2)
end
your array are v.D1, v.D2, ...
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!