MATLAB Help - Rolling Dice Simulation / Central Limit Theorem

I need to write a program which throw dices for 100 times and plot mean value/frequency of same numbers. For 1, 2, 3, 4, 5 and 6 dices. I have started with this code:
arr1=[100;1];
arr2=[100;1];
arr3=[100;1];
arr4=[100;1];
arr5=[100;1];
arr6=[100;1];
for n=1:101
a1=randi(6);
a2=randi(6);
a3=randi(6);
a4=randi(6);
a5=randi(6);
a6=randi(6);
single=a1;
duo=a1+a2;
triple=a1+a2+a3;
quadro=a1+a2+a3+a4;
penta=a1+a2+a3+a4+a5;
hexa=a1+a2+a3+a4+a5+a6;
arr1(n)=single;
arr2(n)=duo;
arr3(n)=triple;
arr4(n)=quadro;
arr5(n)=penta;
arr6(n)=hexa;
end
I need to collect all these 100 values in a cell and plot frequency of same numbers. Like this:

 Accepted Answer

A quick hack using randi and cumsum is
N = 100
x = randi(6,N,6);
cs = cumsum(x')';
for i=1:6
subplot(3,2,i)
histogram(cs(:,i))
end
which delivers a plot (not quite in the same order as your one above). Of course with only 100 samples, the approximations are pretty crude.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Products

Release

R2018b

Asked:

on 20 Apr 2019

Edited:

on 20 Apr 2019

Community Treasure Hunt

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

Start Hunting!