vote up 0 vote down star
1

How do you generate a random double uniformly distributed between 0 and 1 from C++?

Of course I can think of some answers, but I'd like to know what the standard practice is, to have:

  • Good standards compliance
  • Good randomness
  • Good speed

(speed is more important than randomness for my application).

Thanks a lot!

PS: In case that matters, my target platforms are Linux and Windows.

flag

6 Answers

vote up 5 vote down check

An old school solution like:

double X=((double)rand()/(double)RAND_MAX);

Should meet all your criteria (portable, standard and fast). obviously the random number generated has to be seeded the standard procedure is something like:

srand((unsigned)time(NULL));
link|flag
1  
Be wary of RAND_MAX though if you're looking for identical range and behaviour on different systems. Some have a RAND_MAX of 32k, others 2048k. Always best to check. – Dave Aug 27 at 12:34
1  
@Dave: just to be nitpicky: in this case, the output will always be a double in the range [0,1], so the only thing that the value of RAND_MAX can change is the amount of distinct values that the expression can return. – suszterpatt Aug 27 at 12:37
Thanks, that's what I was looking for. – static_rtti Aug 27 at 12:41
@suszterpatt: Yup, that's what I was referring to. Given he's asking for double precision, thought it might be relevant! I should have phrased it better. – Dave Aug 27 at 12:46
1  
It's of course not a real uniform distribution, but even defining that precisely for floating point numbers is a bit of a challenge. (The very least you should expect is that p(x) > 0 if 0<x<1) – MSalters Aug 27 at 13:59
vote up 0 vote down

Here's how you'd do it if you were using C++ TR1.

link|flag
This seems to me to be the only implementation that actually claims to give you a UNIFORM real distribution - my solution above gives MAX_RAND possible values evenly distributed in the range 0 to 1 which is not quite the same thing. – Elemental Aug 28 at 8:39
vote up 0 vote down

Well considering simplicity and speed as your primary criteria, you can add a small generic helper like this :-

  // C++ rand generates random numbers between 0 and RAND_MAX. This is quite a big range
  // Normally one would want the generated random number within a range to be really
  // useful. So the arguments have default values which can be overridden by the caller
  int nextRandomNum(int low = 0, int high = 100) const {
    int range = (high - low) + 1;
    // this modulo operation does not generate a truly uniformly distributed random number
    // in the span (since in most cases lower numbers are slightly more likely), 
    // but it is generally a good approximation for short spans. Use it if essential
    //int res = ( std::rand() % high + low );
    int res = low + static_cast<int>( ( range * std::rand() / ( RAND_MAX + 1.0) ) );
    return res;
  }

Random number generation is a well studied, complex and advanced topic. You can find some simple but useful algorithms here apart from the ones mentioned in other answers:-

Eternally Confuzzled

link|flag
vote up 0 vote down

If speed is your primary concern, then I'd simply go with

double r = (double)rand() / (double)RAND_MAX;
link|flag
-1: I just checked this, rand() and RAND_MAX are both declared int, so this will always give 0. – Chris Burt-Brown Sep 8 at 13:52
Fair enough, edited. – suszterpatt Sep 13 at 14:02
vote up 0 vote down

You could try the Mersenne Twister algorithm.

http://en.wikipedia.org/wiki/Mersenne%5Ftwister

It has a good blend of speed and randomness, and a GPL implementation.

link|flag
vote up 3 vote down

The random_real class from the Boost random library is what you need.

link|flag
The documentation for that library is pretty scarce. Do you have a code sample? – Bill Aug 27 at 14:19
Please have a look at this sample: boost.org/doc/libs/… – Vijay Mathew Aug 28 at 5:34

Your Answer

Get an OpenID
or

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