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?
|
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? |
|||||
|
|
This will generate a number from 0.0 to 1.0, inclusive.
This will generate a number from 0.0 to some arbitrary
This will generate a number from some arbitrary
Note that the Before calling
In order to call |
|||||||||||||||||||
|
|
Take a look at Boost.Random. You could do something like this:
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. |
|||||||||
|
|
call the code with two float values,the code works in any range.
|
|||
|
|
|
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):
|
|||
|
|
|
On some systems (Windows with VC springs to mind, currently), Oh, just noticed that there was already a comment for that problem. Anyway, here's some code that might solve this for you:
Untested, but might work :-) |
|||||||||||
|
|
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.
|
|||
|
|
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. |
|||
|
|