How to generate a random integer betwwen a and b inclusive.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Good morning, I would like to know How to generate a random integer betwwen 1 and 10 inclusive. the integer should be 1 or .... or 10
Thanks (I ve already done it before, but I lost the code).
0 comentarios
Respuestas (2)
Roger Stafford
el 6 de Abr. de 2016
Editada: Roger Stafford
el 6 de Abr. de 2016
x = 9*rand(n,1)+1;
As to "inclusive" this will never give exactly 1 or exactly 10. However if you intended to have an uniform distribution between 1 and 10 the theoretical probability of either extreme is appropriately zero.
Addendum: Ignore this solution. I didn't notice the word 'integer'.
1 comentario
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!