Average of 2 sets of random numbers

3 vues (au cours des 30 derniers jours)
Aren Arslanyan
Aren Arslanyan le 20 Sep 2020
Commenté : Adam Danz le 20 Sep 2020
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

Réponses (1)

Thiago Henrique Gomes Lobato
Take a look at the binomial generator, it does what you want to.
  1 commentaire
Adam Danz
Adam Danz le 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

Connectez-vous pour commenter.

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by