Generate 10000 numbers using RAND with probability
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
- Given a sequence of U(0,1) random numbers, obtain and describe an algorithm that generate binary random numbers with the following point masses:
P{X = 0} = 0.3, P{X = 1} = 0.7
- Use MATLAB (0, ) random number generator “rand” to generate 10,000 random numbers with the above distribution.
- Compute the average value of the 10,000 numbers generated. Compare it with the theoretical mean.
- Give the percentages of the numbers generated that are equal to -1,0, and 1, respectively. Compare them with the point masses and make a comment.
4 comentarios
Torsten
el 31 de Mzo. de 2022
x = rand(0,10000)
You want a vector with 0 rows and 10000 columns ?
Respuestas (2)
Ganesh shankar ram
el 15 de Nov. de 2022
Generate Random Sequences of length 10000
uniformly distributed over the interval 0 and0.5
0 comentarios
Ver también
Categorías
Más información sobre Sources 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!