up vote 20 down vote favorite
3
share [g+] share [fb]

How do I generate random floats in C++?

I thought I could take the integer rand and divide it by something, would that be adequate enough?

link|improve this question

78% accept rate
It depends rather what you want the number for, and how random. typically rand() will give 15 bits of randomness, but floats have 23 bit precision, so it will miss some values out. – Pete Kirkham Mar 26 '09 at 16:11
feedback

7 Answers

up vote 37 down vote accepted

This will generate a number from 0.0 to 1.0, inclusive.

float r = (float)rand()/(float)RAND_MAX;

Note that the rand() function will often not be sufficient if you need truly random numbers.

Before calling rand(), you must first "seed" the random number generator by calling srand(). This should be done once during your program's run -- not once every time you call rand(). This is often done like this:

srand((unsigned)time(0));
link|improve this answer
3  
Don't forget to seed first! – Klaim Mar 26 '09 at 16:18
3  
Best to note that the both limits are inclusive. – dmckee Mar 26 '09 at 16:52
Also the system rand() is usually fairly primitive, and not a good idea for many applications---look at the many SO questions on random number generators for details... – dmckee Mar 26 '09 at 16:53
@Klaim: Edited. – John Dibling Dec 21 '10 at 15:32
feedback

Take a look at Boost.Random. You could do something like this:

float gen_random_float(float min, float max)
{
    boost::mt19937 rng;
    boost::uniform_real<float> u(min, max);
    boost::variate_generator<boost::mt19937&, boost::uniform_real<float> > gen(rng, u);
    return gen();
}

Play around, you might do better passing the same mt19937 object around instead of constructing a new one every time, but hopefully you get the idea.

link|improve this answer
uniform_real uses a half-open interval [min, max), which means you will get your minimum value but will never reach the maximum value. It's something to consider, although if you round in some way, you can get over this problem. – Wolf Jun 17 '11 at 17:09
This is now part of C++11. – TomA Nov 26 '11 at 20:23
feedback

call the code with two float values,the code works in any range.

float rand_FloatRange(float a, float b)
{
return ((b-a)*((float)rand()/RAND_MAX))+a;
}
link|improve this answer
feedback

On some systems (Windows with VC springs to mind, currently), RAND_MAX is ridiculously small, i. e. only 15 bit. When dividing by RAND_MAX you are only generating a mantissa of 15 bit instead of the 23 possible bits. This may or may not be a problem for you, but you're missing out some values in that case.

Oh, just noticed that there was already a comment for that problem. Anyway, here's some code that might solve this for you:

float r = (float)((rand() << 15 + rand()) & ((1 << 24) - 1)) / (1 << 24);

Untested, but might work :-)

link|improve this answer
Looks like a nice solution. – Trap Mar 26 '09 at 17:36
What about float r = (float)((rand() << 9) | rand()) / RAND_MAX? (also untested) – Trap Mar 26 '09 at 17:44
Argh, sorry, dividing by RAND_MAX won't take you anywhere ... the whole point of this trick was to have something that's larger than RAND_MAX ... fixed that for me as well. – Joey Mar 27 '09 at 8:07
Be careful about composing random numbers without theory... consecutive calls to rand() might not be completely independent. Hint: if its a linear congruential generator, watch the low bit on consecutive calls: it alternates between 0 and 1. – RBerteig Mar 27 '09 at 8:14
I know. For some applications this might be enough, though. But yes, you should probably use more than just two calls in this case. There is no silver bullet in this case, you can't even rely on it being an LCG. Other PRNGs have weak high bits. The Boost solution should be the best here. – Joey Mar 27 '09 at 8:46
show 1 more comment
feedback

If you are using C++ and not C, then remember that in technical report 1 (TR1) and in the C++0x draft they have added facilities for a random number generator in the header file, I believe it is identical to the Boost.Random library and definitely more flexible and "modern" than the C library function, rand.

This syntax offers the ability to choose a generator (like the mersenne twister mt19937) and then choose a distribution (normal, bernoulli, binomial etc.).

Syntax is as follows (shameless borrowed from this site):

  #include <iostream>
  #include <random>

  ...

  std::tr1::mt19937 eng;  // a core engine class 
  std::tr1::normal_distribution<float> dist;     

  for (int i = 0; i < 10; ++i)        
      std::cout << dist(eng) << std::endl;
link|improve this answer
feedback

I wasn't satisfied by any of the answers so far so I wrote a new random float function. It makes bitwise assumptions about the float data type. It still needs a rand() function with at least 15 random bits.

//Returns a random number in the range [0.0f, 1.0f).  Every
//bit of the mantissa is randomized.
float rnd(void){
  //Generate a random number in the range [0.5f, 1.0f).
  unsigned int ret = 0x3F000000 | (0x7FFFFF & ((rand() << 8) ^ rand()));
  unsigned short coinFlips;

  //If the coin is tails, return the number, otherwise
  //divide the random number by two by decrementing the
  //exponent and keep going. The exponent starts at 63.
  //Each loop represents 15 random bits, a.k.a. 'coin flips'.
  #define RND_INNER_LOOP() \
    if( coinFlips & 1 ) break; \
    coinFlips >>= 1; \
    ret -= 0x800000
  for(;;){
    coinFlips = rand();
    RND_INNER_LOOP(); RND_INNER_LOOP(); RND_INNER_LOOP();
    //At this point, the exponent is 60, 45, 30, 15, or 0.
    //If the exponent is 0, then the number equals 0.0f.
    if( ! (ret & 0x3F800000) ) return 0.0f;
    RND_INNER_LOOP(); RND_INNER_LOOP(); RND_INNER_LOOP();
    RND_INNER_LOOP(); RND_INNER_LOOP(); RND_INNER_LOOP();
    RND_INNER_LOOP(); RND_INNER_LOOP(); RND_INNER_LOOP();
    RND_INNER_LOOP(); RND_INNER_LOOP(); RND_INNER_LOOP();
  }
  return *((float *)(&ret));
}
link|improve this answer
interesting approach, I'd like to upvote but, I really don't understand what's going on – hasen j Dec 5 '09 at 3:56
feedback

rand() return a int between 0 and RAND_MAX. To get a random number between 0.0 and 1.0, first cast the int return by rand() to a float, then divide by RAND_MAX.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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