Tagged Questions
20
votes
11answers
19k 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?
3
votes
2answers
364 views
example algorithm for generating random value in dataset with normal distribution?
I'm trying to generate some random numbers with simple non-uniform probability to mimic lifelike data for testing purposes. I'm looking for a function that accepts mu and sigma as parameters and ...
1
vote
8answers
2k views
Generating a gaussian distribution with only positive numbers
Is there any way to randomly generate a set of positive numbers such that they have a desired mean and standard deviation?
I have an algorithm to generate numbers with a gaussian distribution, but ...