How to generate random number from Bernoulli distribution?
59 ビュー (過去 30 日間)
古いコメントを表示
just like the below command
a=randn(1,1000)
how can we generate random number from bernoulli distribution
0 件のコメント
採用された回答
Bruno Luong
2023 年 1 月 19 日
p = 0.25
X = double(rand(1,1000) < p)
histogram(X,'Normalization','pdf')
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Random Number Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!