Remanding integer from exponential distribution with mean

조회 수: 2 (최근 30일)
HYZ
HYZ 2023년 1월 1일
댓글: HYZ 2023년 1월 1일
Hi, I found out exprnd() can generate random number from exponential distribution function with mean. Could anyone suggest how to generate integers instead of numbers from exponential distribution with mean? Thanks!
  댓글 수: 2
Walter Roberson
Walter Roberson 2023년 1월 1일
Is the mean integer? Is the random selection required to have exactly that mean or is it statistical? Exactly that mean is equivalent to fixed sum which is the direction DGM took it.
HYZ
HYZ 2023년 1월 1일
The mean is integer. The random selection isn't statistical.

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

채택된 답변

DGM
DGM 2023년 1월 1일
편집: DGM 2023년 1월 1일
If I recall, there are other ways to do this.
MIMT has a tool for generating random integers with sum and range constraints. The above example is more memory-intensive than the method used in randisum().
N = 1000; % number of values to generate
av = 20; % mean of all values
R = randisum([0 NaN],av*N,[N 1],'exponential');
histogram(R,'binmethod','integers')
mean(R) % the mean is as specified
ans = 20
nnz(mod(R,1)) % all values are integers
ans = 0
Note that the constraint here is actually the sum, not the mean. While av can be a non-integer, the value av*N must be an integer. This also means that (unlike exprnd()), av is the sample mean, not the mean of the distribution. I don't know if that's sufficient for your needs.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by