Probability in random numbers!
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
How to create a random 2D array that each cell has different probabilities to be either 0 or 1 for example? In other words, how to t create a 2D array with each cell having a probability of 0.1 to be 1's and 0.9 probability to be 0's.
0 comentarios
Respuestas (2)
Walter Roberson
el 5 de Ag. de 2019
rand(m, n) <= 0.1
would be true (1) with probability 0.1
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!