How can i save a vector with a variable length ?
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Adrin
el 9 de En. de 2013
Comentada: Anwar
el 6 de Nov. de 2022
Hello, I have vector (ind), used in a while loop and whose length is changing in every loop. I need to save (in a table or a mtrix-if it's possible)the value of this vector in each iteration and ofcourse before it change. Thanks you,
0 comentarios
Respuesta aceptada
Thorsten
el 9 de En. de 2013
Use a cell V to store the vectors
for i = 1:N
vec_of_variable_length = ...
V{i} = vec_of_variable_length;
end
Más respuestas (1)
Jan
el 9 de En. de 2013
You cannot store vectors of different length in a matrix, because matrices are rectangular by definition. Using a cell vector as in Thorsten's example is sufficient.
1 comentario
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!