Average of 2 sets of random numbers
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I need to create a fair sided coin, tails=-1 and heads=+1, and run a random number generator that gives the results of a 100 flips, 1000 flips
0 Kommentare
Antworten (1)
Thiago Henrique Gomes Lobato
am 20 Sep. 2020
1 Kommentar
Adam Danz
am 20 Sep. 2020
+1
Another option that doesn't req. Stat & ML Toolbox:
n = 10; % Number of coin flips
f = round(rand(1,n)).*2-1;
% f =
% -1 -1 1 -1 -1 1 1 -1 1 -1
Siehe auch
Kategorien
Mehr zu Random Number Generation finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!