how to generate non integer random number in between two numbers.
Mostrar comentarios más antiguos
I want to generate single random number which is in between 0.86 and 1. how to generate it.
1 comentario
AB WAHEED LONE
el 1 de Feb. de 2021
x=low+(high-low)*rand()
Here low is 0.86 and high is 1
Respuestas (1)
Star Strider
el 22 de Oct. de 2016
Try this:
desired_random_number = 0.86 + (1 - 0.86) * rand;
Categorías
Más información sobre Random Number Generation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!