The .Net package "MathNet.Numerics.Distributions" contains a method Normal(double mean, double stddev, Random randomSource)
.
The first two parameters are double
which can easily be set. But the third parameter Random randdomSource
is causing troubles.
Does anybody know to set it and use it in Normal(double mean, double stddev, Random randomSource)
?