Tagged Questions
4
votes
4answers
2k views
C++ TR1: how to use the normal_distribution?
I'm trying to use the C++ STD TechnicalReport1 extensions to generate numbers following a normal distributions, but this code (adapted from this article):
mt19937 eng;
eng.seed(SEED);
...
1
vote
5answers
179 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 ...