http://www.perlmonks.org?node_id=1069437


in reply to Sampling From a Histogram Distribution

Assume you have a uniform random number generator, like Perl's rand. Just scale its output to the range 1..(4+19+10+5), then assign each of your four things a suitably-sized chunk of that range (apples == 1..4, oranges == 5..24, etc.).
  • Comment on Re: Sampling From a Histogram Distribution