How can i generate float random values in C? (also negative)
|
|
In general to generate random numbers from an arbitrary distribution you'd first generate uniform random numbers and then pass them to the inverse of the cumulative distribution function. Assume for example that you want random numbers with uniform distribution on the interval [-10.0, 10.0] and all you've got is random numbers from [0.0, 1.0]. Cumulative distribution function of the uniform distribution on [-10.0, 10.0] is:
This expresses the probability that a random number generated is smaller than x. The inverse is
(You can obtain this easily on paper by switching the x and y axis). Hence to obtain random numbers uniformly distributed on [-10.0, 10.0] you can use the following code:
In fact, you don't need uniform0to1Random() since there are already a lot of good uniform random numbers generators from [0.0, 1.0] (e.g. in the boost library). You can use the method to generate random numbers with nearly any probability distribution you want by sampling the inverse cumulative distribution as shown above. See http://en.wikipedia.org/wiki/Inverse_transform_sampling for more details. |
|||
|
|
|
Following will give you a float in range between
|
|||||||||
|
|
Edit Since the question was edited for C only: This page is pretty helpful: http://www.geekpedia.com/tutorial39_Random-Number-Generation.html
Output sample:
(note the range: -1..3) |
|||||||||||||||
|
|
The GNU scientific library has a few methods. http://www.gnu.org/s/gsl/manual/html_node/Random-number-generator-algorithms.html Even if you can't use it due to licensing it should give you the names of a few too google for. The boost random library (C++) uses lagged fibonacci and ranlux algorithms for doubles and floats, so they may be another option for you. (The methods not the boost library as it is C++ ) These techniques usually give you results in the range 0 -- 1. By using |
|||
|
|
|
You can use
for a random number between 0 and 1. For instance, to get random numbers
to get random numbers
|
|||
|
|
|
The simplest method I know:
floatRand is a random float in [0,1]. However, the resolution of this method is limited by RAND_MAX.. [EDIT]: to get negative values, generate another random number and if its greater than RAND_MAX/2, multiply the former by (-1). |
|||
|
This will generate random [any representable float]:
Note:
|
|||
|
|
|
Take a look at Boost.Random: http://www.boost.org/doc/libs/1_47_0/doc/html/boost_random.html You can get float random values doing this way:
Please note that random number generation facilities are now available in the new C++ standard: http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01617.html |
|||||||||||||||
|