Tagged Questions

-1
votes
6answers
162 views

Generating a gaussian distribution with only positive numbers

Is there any way to randomly generate a set of positive numbers such that they have a desired mean and standard deviation? I have an algorithm to generate numbers with a gaussia …
2
votes
3answers
56 views

Approximating numbers from a bell curve?

I've been banging my head against a wall on this one. I'm working on a project where the client owns a call centre and wants to estimate the number of people needed to work in hal …
2
votes
3answers
190 views

C++ TR1: how to use the normal_distribution ?

Hi, 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; en …
1
vote
3answers
307 views

How to generate normally distributed random from an integer range?

Given the start and the end of an integer range, how do I calculate a normally distributed random integer between this range? I realize that the normal distribution goes into -+ i …
2
votes
3answers
450 views

C++: generate gaussian distribution

Hi, I would like to know if in C++ standard libraries there is any gaussian distribution number generator, or if you have any code snippet to pass. Thanks in advance.
2
votes
4answers
319 views

Probability of selecting an element from a set

Hello, The expected probability of randomly selecting an element from a set of n elements is P=1.0/n . Suppose I check P using an unbiased method sufficiently many times. What is t …
3
votes
9answers
3k views

Converting a Uniform Distribution to a Normal Distribution

How can I convert a uniform distribution (as most random number generators produce, e.g. between 0.0 and 1.0) into a normal distribution? What if I want a mean and standard deviati …