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

link|improve this question

feedback

6 Answers

up vote 18 down vote accepted

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

Random rand = new Random(); //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|improve this answer
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 '09 at 15:42
@Johann, if you're looking for pure speed, then the Zigorat Algorithm is generally recognised as the fastest approach. Furthermore the above approach can be made faster by carrying a value from one call to the next. – Drew Noakes Jan 4 '11 at 14:49
2  
See the Java implementation for an example of carrying values between calls. It also avoids the need for trig operations. – Drew Noakes Jan 4 '11 at 14:52
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
4  
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
3  
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
feedback

You could try Infer.NET. It's not commercial licensed yet though. Here is there link

It is a probabilistic framework for .NET developed my Microsoft research. They have .NET types for distributions of Bernoulli, Beta, Gamma, Gaussian, Poisson, and probably some more I left out.

It may accomplish what you want. Thanks.

link|improve this answer
feedback

I created a request for such a feature on Microsoft Connect. If this is something you're looking for, please vote for it and increase its visibility.

https://connect.microsoft.com/VisualStudio/feedback/details/634346/guassian-normal-distribution-random-numbers

This feature is included in the Java SDK. Its implementation is available as part of the documentation and is easily ported to C# or other .NET languages.

If you're looking for pure speed, then the Zigorat Algorithm is generally recognised as the fastest approach.

I'm not an expert on this topic though -- I came across the need for this while implementing a particle filter for my RoboCup 3D simulated robotic soccer library and was surprised when this wasn't included in the framework.


In the meanwhile, here's a wrapper for Random that provides an efficient implementation of the Box Muller polar method:

public sealed class GuassianRandom
{
    private bool _hasDeviate;
    private double _storedDeviate;
    private readonly Random _random;

    public GuassianRandom(Random random = null)
    {
        _random = random ?? new Random();
    }

    /// <summary>
    /// Obtains normally (Gaussian) distributed random numbers, using the Box-Muller
    /// transformation.  This transformation takes two uniformly distributed deviates
    /// within the unit circle, and transforms them into two independently
    /// distributed normal deviates.
    /// </summary>
    /// <param name="mu">The mean of the distribution.  Default is zero.</param>
    /// <param name="sigma">The standard deviation of the distribution.  Default is one.</param>
    /// <returns></returns>
    public double NextGuassian(double mu = 0, double sigma = 1)
    {
        if (sigma <= 0)
            throw new ArgumentOutOfRangeException("sigma", "Must be greater than zero.");

        if (_hasDeviate)
        {
            _hasDeviate = false;
            return _storedDeviate*sigma + mu;
        }

        double v1, v2, rSquared;
        do
        {
            // two random values between -1.0 and 1.0
            v1 = 2*_random.NextDouble() - 1;
            v2 = 2*_random.NextDouble() - 1;
            rSquared = v1*v1 + v2*v2;
            // ensure within the unit circle
        } while (rSquared >= 1 || rSquared == 0);

        // calculate polar tranformation for each deviate
        var polar = Math.Sqrt(-2*Math.Log(rSquared)/rSquared);
        // store first deviate
        _storedDeviate = v2*polar;
        _hasDeviate = true;
        // return second deviate
        return v1*polar*sigma + mu;
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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