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
|
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
| ||||
|
feedback
|
|
Jarrett's suggestion of using a Box-Muller transform is good for a quick-and-dirty solution. A simple implementation:
| |||||||||
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. | |||
|
feedback
|
|
Math.NET Iridium also claims to implement "non-uniform random generators (normal, poisson, binomial, ...)". | |||
|
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. | |||||||||||
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. | |||
|
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. 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
| ||||
|
feedback
|