How to save for loop data into vector
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Veronika
el 28 de Nov. de 2014
Respondida: Guillaume
el 28 de Nov. de 2014
Dear all, I have this simple code:
for s = 0.0:0.1:1
disp(s)
end
I want to save data from this for loop into a vector. How can I do this?
Thank you for answers.
0 comentarios
Respuesta aceptada
Guillaume
el 28 de Nov. de 2014
v = 0:0.1:1 %?
Or if you really want to be inefficient and use a loop:
idx = 1;
for s = 0:0.1:1
v(idx) = s;
idx = idx + 1;
end
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!