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.
Note that the rand() function will often not be sufficient if you need truly random numbers. |
||||||||
|
|
|
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.
|
||
|
|
|
|
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 :-) |
||||||||||
|
|
|
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. |
||
|
|