vote up 6 vote down star
1

Hi there,

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

flag

4 Answers

vote up 1 vote down check

Math.NET Iridium also claims to implement "non-uniform random generators (normal, poisson, binomial, ...)".

link|flag
vote up 4 vote down

Jarrett's suggestion of using a Box-Muller transform is good for a quick-and-dirty solution. A simple implementation:

Random rand = new Random(123); //reuse this if you are generating many
double u1 = rand.NextDouble(); //these are uniform(0,1) random doubles
double u2 = rand.NextDouble();
double randStdNormal = Math.Sqrt(-2.0 * Math.Log(u1)) *
             Math.Sin(2.0 * Math.PI * u2); //random normal(0,1)
double randNormal =
             mean + stdDev * randStdNormal; //random normal(mean,stdDev^2)
link|flag
I tested it and compared to MathNet's Mersenne Twister RNG and NormalDistribution. Your version is more than twice as fast and the end result is basically the same (visual inspection of the "bells"). – Johann Gerell Oct 22 at 15:42
vote up 4 vote down

http://mathworld.wolfram.com/Box-MullerTransformation.html

Using two random variables, you can generate random values along a Gaussian distribution. It's not a difficult task at all.

link|flag
vote up 0 vote down

I don't think there is. And I really hope there isn't, as the framework is already bloated enough, without such specialised functionality filling it even more.

Take a look at http://www.extremeoptimization.com/Statistics/UsersGuide/ContinuousDistributions/NormalDistribution.aspx and http://www.vbforums.com/showthread.php?t=488959 for a third party .NET solutions though.

link|flag
1  
Since when is Gaussian distribution 'specialised'? It's far more general than, say, AJAX or DataTables. – TraumaPony Oct 20 '08 at 14:49
@TraumaPony: are you seriously trying to suggest more developers use Gaussian distribution than use AJAX on a regular basis? – David Arno Oct 20 '08 at 16:53
Possibly; what I'm saying is that it's far more specialised. It only has one use- web apps. Gaussian distributions have an incredible number of unrelated uses. – TraumaPony Oct 21 '08 at 2:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.