Creating Dynamic variables for future use
Mostrar comentarios más antiguos
Hi.
I need to create variables for future use in a loop. For example, for i=1,2,...n, I need to save D1, D2,...,DN, where each Di is a vector with different dimension.
Can anybody help me?
Marco.
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 12 de Sept. de 2012
Editada: Azzi Abdelmalek
el 12 de Sept. de 2012
for k=1:4
v.(sprintf('D%d',k))=rand(k,2)
end
your array are v.D1, v.D2, ...
1 comentario
Marco Duarte
el 12 de Sept. de 2012
Categorías
Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!