Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
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

7 Answers

up vote 117 down vote accepted

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

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

This will generate a number from 0.0 to some arbitrary float, X:

float r2 = (float)rand()/((float)RAND_MAX/X);

This will generate a number from some arbitrary LO to some arbitrary HI:

float r3 = LO + (float)rand()/((float)RAND_MAX/(HI-LO));

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));

In order to call time, you must #include <ctime>.

share|improve this answer
6  
Don't forget to seed first! – Klaim Mar 26 '09 at 16:18
5  
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
1  
Don't forget to #include <time.h> for time() function. – zagy May 19 '12 at 12:25
1  
What is the reason for choosing to divide from the denominator instead of multiply by the result of the division? – NickLarsen Dec 9 '12 at 1:02
show 10 more comments

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.

share|improve this answer
1  
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
5  
This is now part of C++11. – TomA Nov 26 '11 at 20:23

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;
}
share|improve this answer

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;
share|improve this answer

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 :-)

share|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. – Јοеу 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. – Јοеу Mar 27 '09 at 8:46
show 1 more comment

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));
}
share|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

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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