Storing Data into a Matrix from a for loop

12 visualizaciones (últimos 30 días)
Estevan Munoz
Estevan Munoz el 23 de Nov. de 2018
Comentada: madhan ravi el 23 de Nov. de 2018
Hello, I would like to alter my code so that every value for position is stored in a matrix rather than dispaying only the final value so I can plot them later. How would I write this out? Here's what I've got. Thanks!
position = 0;
tails = 0;
heads = 1;
for s = (1:1000)
x=randi([0 1]);
if x==tails
position = position-1;
elseif x==heads
position = position+1;
end
end

Respuesta aceptada

madhan ravi
madhan ravi el 23 de Nov. de 2018
position = zeros(1,1000);
position(1)=0;
tails = 0;
heads = 1;
for s = 2:1000
x=randi([0 1]);
if x==tails
position(s) = position(s-1)-1;
elseif x==heads
position(s) = position(s-1)+1;
end
end
  2 comentarios
Estevan Munoz
Estevan Munoz el 23 de Nov. de 2018
Perfect! Thank you!
madhan ravi
madhan ravi el 23 de Nov. de 2018
Anytime :)

Iniciar sesión para comentar.

Más respuestas (1)

Luna
Luna el 23 de Nov. de 2018
Hello Estevan,
Try this:
position = zeros(1,1000);
tails = 0;
heads = 1;
for s = (1:1000)
x=randi([0 1]);
if x==tails
position(s) = position(s)-1;
elseif x==heads
position(s) = position(s)+1;
end
end
  2 comentarios
Estevan Munoz
Estevan Munoz el 23 de Nov. de 2018
Unfortunately doesn't dispaly data correctly. Matlab 1.png
Estevan Munoz
Estevan Munoz el 23 de Nov. de 2018
The orginal data became skewed for some reason. Matlab 2.png

Iniciar sesión para comentar.

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!

Translated by