How can I generate a random real numbers from a specific range?
6 views (last 30 days)
Show older comments
Abdulatif Alabdulatif
on 13 Sep 2014
Edited: Image Analyst
on 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 Comment
Accepted Answer
Azzi Abdelmalek
on 13 Sep 2014
Edited: Azzi Abdelmalek
on 13 Sep 2014
rand*0.2304
For a general case (a,b)
a=0.12
b=0.45
out=a+(b-a)*rand;
2 Comments
Image Analyst
on 14 Sep 2014
Edited: Image Analyst
on 14 Sep 2014
out4decimalPlaces = round(out * 10000)/10000
Please mark Azzi's answer as Accepted now.
More Answers (0)
See Also
Categories
Find more on Random Number Generation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!