How can I generate a random real numbers from a specific range?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Abdulatif Alabdulatif
le 13 Sep 2014
Modifié(e) : Image Analyst
le 14 Sep 2014
Hi all,
I want to pick real numbers randomly from a specific range (0 , 0.2304). Can any one help me to do that?
Thank you
1 commentaire
Réponse acceptée
Azzi Abdelmalek
le 13 Sep 2014
Modifié(e) : Azzi Abdelmalek
le 13 Sep 2014
rand*0.2304
For a general case (a,b)
a=0.12
b=0.45
out=a+(b-a)*rand;
2 commentaires
Image Analyst
le 14 Sep 2014
Modifié(e) : Image Analyst
le 14 Sep 2014
out4decimalPlaces = round(out * 10000)/10000
Please mark Azzi's answer as Accepted now.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Random Number Generation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!