how to generate non integer random number in between two numbers.
Afficher commentaires plus anciens
I want to generate single random number which is in between 0.86 and 1. how to generate it.
1 commentaire
AB WAHEED LONE
le 1 Fév 2021
x=low+(high-low)*rand()
Here low is 0.86 and high is 1
Réponses (1)
Star Strider
le 22 Oct 2016
Try this:
desired_random_number = 0.86 + (1 - 0.86) * rand;
Catégories
En savoir plus sur Random Number Generation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!