Borrar filtros
Borrar filtros

Array of Arrays

5 visualizaciones (últimos 30 días)
sita
sita el 6 de Dic. de 2011
Comentada: Tlotlo Oepeng el 4 de Jun. de 2021
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 comentario
Jan
Jan el 6 de Dic. de 2011
Please format your code as explained in the "Markup help" link on this page. I've done this for you.

Iniciar sesión para comentar.

Respuesta aceptada

Jan
Jan el 6 de Dic. de 2011
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 comentarios
sita
sita el 6 de Dic. de 2011
yes ,i am looking for same...thanks....
Tlotlo Oepeng
Tlotlo Oepeng el 4 de Jun. de 2021
the how do you add vaules to each array?
first output an array of U going into first array 2nd U and so forth?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by