how to create continuous variables
显示 更早的评论
hello all :
I need to run a loop for 10000 times and in every iteration, i get an array of values. I need to assign this array of values to a different variable(A1, A2 ,A3,A4,...) in every iteration. what conditions should i use to create the variables ion the same loop?
回答(3 个)
Star Strider
2014-11-19
Don’t do that!
Name your variables (with k being your iteration counter):
A(:,k) = ... % Column Vectors
A(k,:) = ... % Row Vectors
A(:,:,k) = ... % Matrices
1 个评论
Star Strider
2014-11-21
You will have to be more specific.
What do you want your variables to contain? Row vectors? Column vectors? Matrices?
How are you creating them? Calculations? Reading files?
We need more information if you want us to help you. Ambiguous questions will result in equally ambiguous answers.
Image Analyst
2014-11-19
1 个投票
类别
在 帮助中心 和 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!