How can I generate a random real numbers from a specific range?
6 ビュー (過去 30 日間)
古いコメントを表示
Abdulatif Alabdulatif
2014 年 9 月 13 日
編集済み: Image Analyst
2014 年 9 月 14 日
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 件のコメント
採用された回答
Azzi Abdelmalek
2014 年 9 月 13 日
編集済み: Azzi Abdelmalek
2014 年 9 月 13 日
rand*0.2304
For a general case (a,b)
a=0.12
b=0.45
out=a+(b-a)*rand;
2 件のコメント
Image Analyst
2014 年 9 月 14 日
編集済み: Image Analyst
2014 年 9 月 14 日
out4decimalPlaces = round(out * 10000)/10000
Please mark Azzi's answer as Accepted now.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Random Number Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!