I am writing some embedded code in C and need to use the rand() function. Unfortunately, rand() is not supported in the library for the controller. I need a simple implementation that is fast, but more importantly has little space overhead, that produces relatively high-quality random numbers. Does anyone know which algorithm to use or sample code?

EDIT: It's for image processing, so "relatively high quality" means decent cycle length and good uniform properties.

link|improve this question

2  
define "high quality" – anon Jul 22 '09 at 18:34
1  
What are you looking for, more specifically? Do you need a long cycle length? How big numbers are the numbers we're talking about (16-bit, 32-bit, whatever)? How random do they have to be? By "space overhead", are you referring to ROM limitations, RAM limitations, or both? – David Thornley Jul 22 '09 at 18:51
feedback

10 Answers

up vote 12 down vote accepted

Check out this collection of random number generators from George Marsaglia. He's a leading expert in random number generation, so I'd be confident using anything he recommends. The generators in that list are tiny, some requiring only a couple unsigned longs as state.

Marsaglia's generators are definitely "high quality" by your standards of long period and good uniform distribution. They pass stringent statistical tests, though they wouldn't do for cryptography.

link|improve this answer
1  
Thanks for the reference to that. I've done a little research, and found "KISS: a Bit Too Simple", by Greg Rose which (a) warns against "bad" seed values in MWC and (b) casts doubt on the SHR3 generator. This 2003 post by Marsaglia gives a slightly different SHR3 which fixes the problems the earlier one had. I would be happy to use the KISS-style generator, as long as I check and avoid "bad" seeds, and ensure that I am using the better SHR3 generator. – Craig McQueen Jan 20 '11 at 2:06
Marsaglia made major contributions in the 90s to PRNGs, however, today I'd probably look to L'Ecuyer or Matsumoto, I think. That being said, if the OP doesn't do major simulation on his embedded devices I guess most of the earlier good generators can be used as well :-) – Joey Jan 26 '11 at 1:13
1  
@Joey: Marsaglia's KISS generators still perform well in L'Ecuyer's TestU01 RNG tests, passing tests which even some of L'Ecuyer's own RNGs such as LFSR113 fail. – Craig McQueen Feb 20 '11 at 22:50
feedback

Can't resist...

alt text

link|improve this answer
feedback

Here is a link to a ANSI C implementation of a few random number generators.

link|improve this answer
feedback

Use the C code for LFSR113 from L'écuyer:

unsigned int lfsr113_Bits (void)
{
   static unsigned int z1 = 12345, z2 = 12345, z3 = 12345, z4 = 12345;
   unsigned int b;
   b  = ((z1 << 6) ^ z1) >> 13;
   z1 = ((z1 & 4294967294U) << 18) ^ b;
   b  = ((z2 << 2) ^ z2) >> 27; 
   z2 = ((z2 & 4294967288U) << 2) ^ b;
   b  = ((z3 << 13) ^ z3) >> 21;
   z3 = ((z3 & 4294967280U) << 7) ^ b;
   b  = ((z4 << 3) ^ z4) >> 12;
   z4 = ((z4 & 4294967168U) << 13) ^ b;
   return (z1 ^ z2 ^ z3 ^ z4);
}

Very high quality and fast. Do NOT use rand() for anything. It is worse than useless.

link|improve this answer
2  
Note that it assumes a 32-bit int, which may not be appropriate for an embedded platform. – tomlogic Jun 7 '11 at 17:49
feedback

Mersenne twister

A bit from Wikipedia:

  • It was designed to have a period of 219937 − 1 (the creators of the algorithm proved this property). In practice, there is little reason to use a larger period, as most applications do not require 219937 unique combinations (219937 is approximately 4.3 × 106001; this is many orders of magnitude larger than the estimated number of particles in the observable universe, which is 1080).
  • It has a very high order of dimensional equidistribution (see linear congruential generator). This implies that there is negligible serial correlation between successive values in the output sequence.
  • It passes numerous tests for statistical randomness, including the Diehard tests. It passes most, but not all, of the even more stringent TestU01 Crush randomness tests.

  • source code for many languages available on the link.

link|improve this answer
way too much space overhead. – rlbond Jul 22 '09 at 19:55
feedback

I've made a collection of random number generators, "simplerandom", that are compact and suitable for embedded systems. The collection is available in C and Python.

I've looked around for a bunch of simple and decent ones I could find, and put them together in a small package. They include several Marsaglia generators (KISS, MWC, SHR3), and a couple of L'Ecuyer LFSR ones.

All the generators return an unsigned 32-bit integer, and typically have a state made of 1 to 4 32-bit unsigned integers.

Interestingly, I found a few issues with the Marsaglia generators, and I've tried to fix/improve all those issues. Those issues were:

  • SHR3 generator (component of Marsaglia's 1999 KISS generator) was broken.
  • MWC low 16 bits have only a 216 period. So I made an improved MWC.

I uncovered a few issues with seeding, and tried to make robust seeding (initialisation) procedures, so they won't break if you give them a "bad" seed value.

link|improve this answer
feedback

I'd take one from the GNU C library, the source is available to browse online.

http://qa.coreboot.org/docs/libpayload/rand_8c-source.html

But if you have any concern at all about the quality of the random numbers, you should probably look at more carefully written mathematically libraries. It's a big subject and the standard rand implementations aren't highly thought of by experts.

Here's another possibility: http://www.boost.org/doc/libs/1_39_0/libs/random/index.html

(If you find you have too many options, you could always pick one at random.)

link|improve this answer
The rand.c source code link seems broken. Try the git repo for rand.c and random.c – Craig McQueen Feb 14 '11 at 1:05
feedback

I found this: Simple Random Number Generation, by John D. Cook.

It should be easy to adapt to C, given that it's only a few lines of code.

Edit: and you could clarify what you mean by "relatively high-quality". Are you generating encryption keys for nuclear launch codes, or random numbers for a game of poker?

link|improve this answer
2  
That's by John D. Cook who wrote that other answer, and it's based on the Marsaglia post he linked to in his answer. – Craig McQueen Jan 25 '11 at 11:38
feedback

I recommend the academic paper Two Fast Implementations of the Minimal Standard Random Number Generator by David Carta. You can find free PDF through Google. The original paper on the Minimal Standard Random Number Generator is also worth reading.

Carta's code gives fast, high-quality random numbers on 32-bit machines. For a more thorough evaluation, see the paper.

link|improve this answer
feedback

The standard solution is to use a linear feedback shift register.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.