Array of Arrays

5 次查看(过去 30 天)
sita
sita 2011-12-6
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
  1 个评论
Jan
Jan 2011-12-6
Please format your code as explained in the "Markup help" link on this page. I've done this for you.

请先登录,再进行评论。

采纳的回答

Jan
Jan 2011-12-6
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)};
  2 个评论
sita
sita 2011-12-6
yes ,i am looking for same...thanks....
Tlotlo Oepeng
Tlotlo Oepeng 2021-6-4
the how do you add vaules to each array?
first output an array of U going into first array 2nd U and so forth?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by