Random samples from combination of poisson distributions

조회 수: 5 (최근 30일)
RR
RR 2020년 6월 9일
댓글: RR 2020년 6월 11일
How can I generate random samples from a multiple combination of poisson distributions?
I'm wondering if there is the possibility to create a sort of 'poisson' mixture model distribution simular to a gaussian mixture model distribution (gmdistribution function).
Thank you all in advance,
RR

채택된 답변

Jeff Miller
Jeff Miller 2020년 6월 9일
One easy way to generate a random score from a poisson mixture distribution is to randomly select the particular poisson first and then randomly select the number from that poisson, something like this:
% generate a random value of x from a poisson mixture distribution:
ru = rand;
if r1<0.2
x = poissrnd(lambda1); % prob = 0.2 that x comes from this distribution
elseif ru<0.5
x = poissrnd(lambda2); % prob = 0.3 that x comes from this distribution
else
x = poissrnd(lambda3); % prob = 0.5 that x comes from this distribution
end
There are various ways to vectorize this for lots of x's, but I'm not sure which would be fastest.
Did you just want the poisson mixture for generating random numbers, or did you want it for some other reason too?
  댓글 수: 1
RR
RR 2020년 6월 11일
thank you for the answer. That was the point!
I would like to generate random numbers coming from a combined and weighted poissons distribution to reshape that in a volumetric image (n x m x k matrix).

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by