How to generate random number from Bernoulli distribution?
61 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
PARVATHY NAIR
el 19 de En. de 2023
Respondida: Bruno Luong
el 19 de En. de 2023
just like the below command
a=randn(1,1000)
how can we generate random number from bernoulli distribution
0 comentarios
Respuesta aceptada
Bruno Luong
el 19 de En. de 2023
p = 0.25
X = double(rand(1,1000) < p)
histogram(X,'Normalization','pdf')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Random Number Generation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!