Storing Data into a Matrix from a for loop

1 vue (au cours des 30 derniers jours)
Estevan Munoz
Estevan Munoz le 23 Nov 2018
Commenté : madhan ravi le 23 Nov 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

Réponse acceptée

madhan ravi
madhan ravi le 23 Nov 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 commentaires
Estevan Munoz
Estevan Munoz le 23 Nov 2018
Perfect! Thank you!
madhan ravi
madhan ravi le 23 Nov 2018
Anytime :)

Connectez-vous pour commenter.

Plus de réponses (1)

Luna
Luna le 23 Nov 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 commentaires
Estevan Munoz
Estevan Munoz le 23 Nov 2018
Unfortunately doesn't dispaly data correctly. Matlab 1.png
Estevan Munoz
Estevan Munoz le 23 Nov 2018
The orginal data became skewed for some reason. Matlab 2.png

Connectez-vous pour commenter.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by