Generating random decimals with a range
10 次查看(过去 30 天)
显示 更早的评论
I need to create a table using random numbers, i am having an issue with getting correct digits within a specified range. The range is 500.57 to 2000.75 and the random numbers must be 2 decimals
0 个评论
采纳的回答
Dyuman Joshi
2023-10-1
%Change the display format
format longg
%Generate random number between [min max]*10^(num_of_demicals)
%and divide the output by 10^(num_of_demicals)
y = randi([50057 200075],10,1)/100;
disp(y)
更多回答(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!