how to generate random numbers between two doubles in c++ , these number should look like xxxxx,yyyyy .
thanks
|
|
Here's how
Remember to call srand() with a proper seed each time your program starts. |
|||||||||||||
|
|
This solution requires C++11 (or TR1).
For more details see "Random number generation using C++ TR1". See also Stroustrup's "Random number generation". |
||||
|
|
|
If accuracy is an issue here you can create random numbers with a finer graduation by randomizing the significant bits. Let's assume we want to have a double between 0.0 and 1000.0. On MSVC (12 / Win32) RAND_MAX is 32767 for example. If you use the common
In case of IEE 754 double variables (53 significant bits) and 53 bit randomization the smallest possible randomization gap for the 0 to 1000 problem will be
and therefore significantly lower. The downside is that 4 rand() calls will be needed to obtain the randomized integral number (assuming a 15 bit RNG).
If the number of bits for the mantissa or the RNG is unknown the respective values need to be obtained within the function.
Note: I don't know whether the number of bits for unsigned long long (64 bit) is greater than the number of double mantissa bits (53 bit for IEE 754) on all platforms or not.
It would probably be "smart" to include a check like |
|||
|
|
|
something like this:
|
|||||
|