MATLAB: Array of Arrays

matrix array

hi,, I have created array of arrays "myArray = createArrays(i, [60,1]);"to create array below function is used
function result = createArrays(nArrays, arraySize)
result = cell(1, nArrays);
for i = 1 : nArrays
result{i} = zeros(arraySize);
end
end
where i is increasing in loop.same way i want to store an array in increasing loop..how to store arrays in this ..how to print the content. 'i' increases in loop every time i want to store x(60,1) in my array for 350 times
Thanks , Sita

Best Answer

I do not get the point: Your program does store an array inside a loop already. What is x(60,1)?
Perhaps you are looking for something like this:
c = cell(1, 350);
c(:) = {zeros(60, 1)};