Getting a random list of numbers on a very specific interval
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Evan Bakalars
el 25 de Feb. de 2021
Editada: James Tursa
el 25 de Feb. de 2021
How would I go about getting a list of 10000 random numbers (using rng('shuffle')), between 0 and 90, but does not include any numbers between 40 and 50. I dont want to split it by saying give 5000 random numbers from 0-40 and 5000 for 50-90.
0 comentarios
Respuesta aceptada
James Tursa
el 25 de Feb. de 2021
Editada: James Tursa
el 25 de Feb. de 2021
Generate the list according to the range width of valid values, then adjust the results. E.g.,
r = rand(10000,1)*80;
ix = r > 40;
r(ix) = r(ix) + 10;
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!