Average of 2 sets of random numbers

3 ビュー (過去 30 日間)
Aren Arslanyan
Aren Arslanyan 2020 年 9 月 20 日
コメント済み: Adam Danz 2020 年 9 月 20 日
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

回答 (1 件)

Thiago Henrique Gomes Lobato
Thiago Henrique Gomes Lobato 2020 年 9 月 20 日
Take a look at the binomial generator, it does what you want to.
  1 件のコメント
Adam Danz
Adam Danz 2020 年 9 月 20 日
+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

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeRandom Number Generation についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by