필터 지우기
필터 지우기

Random Number Generation for Continuously Decrementing Range

조회 수: 2 (최근 30일)
New User
New User 2020년 10월 24일
댓글: New User 2020년 10월 24일
How can I generate random numbers within a specific range and that range decrements by a specific number? Furthermore the random numbers generated for the given ranges must be stored in their respective arrays and afterwards a single array must store all those subarrys.

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 10월 24일
Try this
lb = 0; % initial upper bound
ub = 1; % initial lower bound
n = 10; % number of random point in each interval
x = {}; % cell array forr random numbers in each interval
count = 1;
while (ub-lb)>0
x{count} = rand(1, n)*(lb-ub) + ub;
lb = lb + 0.01; % increase the lowerr bound
ub = ub - 0.01; % decrease the lowerr bound
count = count + 1;
end
y = [x{:}]; % all random numbers
  댓글 수: 1
New User
New User 2020년 10월 24일
There is a problem in this code the y array does not follow the trend of decreasing ranges. The distribution of random numbers is random in y. Neverthless thank you very much.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by