Capturing numbers from different sized elements in for loop

5 views (last 30 days)
I have a for loop with multiple commands and operators, at the end of the loop I am given important numbers that I would like to store with each iteration of the loop. Each iteration of the loop may contain a different number of values to store. In order to store the values I have used a cell array. This works but I need an easy way to access the numbers within the cell. Below is a similar, though generic, situation to the problem I am facing.
for i=1:10
z=randi(5,1);
store=randi(200,z,1);
all{i}=store;
end
I would like to be able to access the numbers in "all" as doubles or matrices, as opposed to cells or strings. Any help is appreciated in either better methods of collecting within the loop or in transforming the cell array to a double matrix.

Answers (1)

Image Analyst
Image Analyst on 8 Nov 2015
Don't use "all" as the name of your variable - it's the name of a built in function. Not sure if that is causeing your problem or not but you should not use that name!
Let's say you want the matrix you stored in cell #42 of a cell array called "ca":
theMatrix = ca{42};
Now let's say you want the element at row 3, column 2:
theValue = theMatrix(3, 2);
A structure array is simpler so maybe you'd prefer that over a cell array (which has very high overhead).
  5 Comments
Bus141
Bus141 on 9 Nov 2015
The problem is that each iteration gives me a different sized matrix of numbers. I am new to structured arrays but will look further into it. The issue is that I want to extract all of the different sized matrices at the end of the loop and this number is larger than one would want to manually search through but not so large where pre-allocating for efficiency is a concern.
The 3-D dimensions idea gave me the thought to pre-allocate a larger matrix and then fill in what I get with each iteration.
for i=1:10
within_z=zeros(10,1);
z=randi(10,1);
store=randi(200,z,1);
l=length(store);
within_z(1:l,:)=store';
alt(:,i)=within_z';
end
Thanks for the help.
Image Analyst
Image Analyst on 9 Nov 2015
Making a 3D array could work, but you might want to have a "rows" array and a "columns" array to keep track of what part of the slice was actually used. Or else initialize unused elements to some flag value, like -99999 so that you can recognize what's been assigned and what's not been assigned at that slice/plane/z-level. This method would take up a LOT less memory and be much faster. Even though it "wastes" some memory, it's not as wasteful as a cell array with it's huge overhead. If it works for you, maybe you could Vote and/or Accept the answer.

Sign in to comment.

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!