Generating Random Floats in [0, 1)

Published August 7, 2022 • more posts

Recently, I found myself in a situation where I needed to generate a random float between 0 and 1 using a random 32-bit integer in C. This subject has been done to death before, but I felt like feeling a little pain so I decided to figure it out myself before using someone else's better solution.

First things first: we actually need to obtain some random integers. Easy, right? We'll just call rand() and—

GIF of Eric Andre shooting Hannibal
This is what will happen to you if you even suggest using C's rand().

rand() is known to have a number of problems; here's a short list:

Okay, so rand() is not as horrible as I've made it out to be. Don't get me wrong—rand() is pretty crappy—but if you generated 100 random numbers and stared at it, it would probably look pretty random. So rand() might be okay for use cases where high quality randomness is not required (such as a game), but if you try subjecting it to rigorous statistical tests it crumples like wet toilet paper.

Today, we're going to be using xoshiro128+ as our PRNG. PCG is another viable alternative.

Introducing Floating Point §

Okay, great. So now we have a random uint32_t... how do we turn this into a random float?

The naïve solution is to just divide the integer by the maximum value (232), but this is not great for two reasons:

Instead, what we want to do is create a floating point number using bitwise operations. To do that, we need to familiarize ourselves with how floating point values are represented in memory; specifically, we're going to be focusing on IEEE 754, which is sort of required in the C standard.

diagram of the bits in a floating-point number (sign, exponent, mantissa)
The anatomy of a single-precision float. Image by Fresheneesz

If you ever learned scientific notation in school, a floating point number is a lot like that. Basically, three fields are packed together: the sign bit, the exponent, and the integer. The function of the sign bit is very simple; 0 is positive and 1 is negative. The real value represented by a float is basically equal to fraction×2exponent\mathrm{fraction} \times 2^\mathrm{exponent}.

There are a few pitfalls that we need to be aware of, however:

In this case, the exponent portion is equal to 124127=3124 - 127 = -3, and the fraction section is equal to 1.012=1.251.01_2 = 1.25. Thus, the overall value is equal to 23×1.25=0.156252^{-3} \times 1.25 = 0.15625.

Actually Generating Floats §

Time to actually generate the floats!

We can start by drawing 23 bits from our PRNG for the fraction part. This is easy enough; we just take a 32-bit value and shift it right 9 bits. This gives us a random fraction value between 1.0002=11.000\ldots_2 = 1 and 1.111221.111\ldots_2 \approx 2.

If we set the exponent portion to 0, the fraction portion will be multipled with 20=12^0 = 1, giving us a random number in the range [1,2)[1, 2). Subtracting 1 yields a number in the range [0,1)[0, 1).

Here's the actual code:

float int_to_float(uint32_t random) {
    union { uint32_t u32; float f; } u = { .u32 = random >> 9 | 0x3f800000 };
    return u.f - 1.0;
}

0x3f800000 is what we get when we take our exponent (0 is represented as 127) and shift it right 23 bits so that it's in the right place.

We could use plain old floating point multiplication instead of type punning, though there is a chance that it will be imperceptibly slower than our hacky solution. Probably not. Whatever.

You can find the full code demonstrating this concept here. That's all, folks.