How to generate random number from Bernoulli distribution?

73 views (last 30 days)
just like the below command
a=randn(1,1000)
how can we generate random number from bernoulli distribution

Accepted Answer

Bruno Luong
Bruno Luong on 19 Jan 2023
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')

More Answers (0)

Community Treasure Hunt

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

Start Hunting!