How to generate random number from Bernoulli distribution?

59 ビュー (過去 30 日間)
PARVATHY NAIR
PARVATHY NAIR 2023 年 1 月 19 日
回答済み: Bruno Luong 2023 年 1 月 19 日
just like the below command
a=randn(1,1000)
how can we generate random number from bernoulli distribution

採用された回答

Bruno Luong
Bruno Luong 2023 年 1 月 19 日
p = 0.25
p = 0.2500
X = double(rand(1,1000) < p)
X = 1×1000
0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 1 0 1 0 0 0
histogram(X,'Normalization','pdf')

その他の回答 (0 件)

カテゴリ

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