vote up 4 vote down star

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?

flag

75% 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 at 16:11

5 Answers

vote up 12 vote down check

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.

link|flag
2  
Don't forget to seed first! – Klaim Mar 26 at 16:18
Best to note that the both limits are inclusive. – dmckee Mar 26 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 at 16:53
vote up 13 vote down

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|flag
vote up 7 vote down

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|flag
vote up 5 vote down

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|flag
Looks like a nice solution. – Trap Mar 26 at 17:36
What about float r = (float)((rand() << 9) | rand()) / RAND_MAX? (also untested) – Trap Mar 26 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. – Johannes Rössel Mar 27 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 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. – Johannes Rössel Mar 27 at 8:46
show 1 more comment
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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