Tagged Questions
20
votes
12answers
18k 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?
17
votes
6answers
11k views
Generate random numbers following a normal distribution in C/C++
Does anyone know how I could easily generate random numbers following a normal distribution in C/C++ ?
http://www.mathworks.com/access/helpdesk/help/toolbox/stats/normrnd.html
I don't want to use ...
12
votes
6answers
4k views
Random Gaussian Variables
does someone of you know if there is a class in the standard library of .net, that gives me the functionality to create random variables that follow a gaussian distribution?
Greets
Sebastian
4
votes
2answers
580 views
Code to generate Gaussian (normally distributed) random numbers in Ruby
What is some code to generate normally distributed random numbers in ruby?
(Note: I answered my own question, but I'll wait a few days before accepting to see if anyone has a better answer.)
EDIT:
...
3
votes
2answers
336 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 ...
2
votes
2answers
1k views
How to generate normally distributed random from an integer range?
Given the start and the end of an integer range, how do I calculate a normally distributed random integer between this range?
I realize that the normal distribution goes into -+ infinity. I guess the ...
1
vote
1answer
83 views
Normalized Random Number Distrubution Between 0 and 1 [0, 1) in C
I'm having trouble keeping randomly generated values that are normally distributed between 0 and 1 (including 0, excluding 1). I believe the algorithm is basically correct, I am just stumped here. Any ...
1
vote
1answer
96 views
PHP: Random number from a normal distribution
In PHP, can I get a set of random numbers which conform to a specified mean and standard deviation?
1
vote
5answers
172 views
How do I most effectively prevent my normally-distributed random variable from being zero?
I'm writing a Monte Carlo algorithm, in which at one point I need to divide by a random variable. More precisely: the random variable is used as a step width for a difference quotient, so I actually ...
1
vote
1answer
258 views
Random Color Deviation with Normal Distribution
I'd like to generate a random color, based on an original color and a normal distribution, so I can create a random texture telling the script "Okay, this is the general color you should be using, but ...