How can I generate a random real numbers from a specific range?
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Abdulatif Alabdulatif
il 13 Set 2014
Modificato: Image Analyst
il 14 Set 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 Commento
Risposta accettata
Azzi Abdelmalek
il 13 Set 2014
Modificato: Azzi Abdelmalek
il 13 Set 2014
rand*0.2304
For a general case (a,b)
a=0.12
b=0.45
out=a+(b-a)*rand;
2 Commenti
Image Analyst
il 14 Set 2014
Modificato: Image Analyst
il 14 Set 2014
out4decimalPlaces = round(out * 10000)/10000
Please mark Azzi's answer as Accepted now.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Random Number Generation in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!