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!