Search Results

3
votes
9answers
4k views

Converting a Uniform Distribution to a Normal Distribution

How can I convert a uniform distribution (as most random number generators produce, e.g. between 0.0 and 1.0) into a normal distribution? What if I want a mean and standard deviation of my choosing …
1
vote

Create many constrained, random permutation of a list

This could be improved, but it seems to do the job (Python): import math, random def get_pool(items, y, z): slots = y*z use_each_times = slots/len(items) exceptions = …