vote up 0 vote down star

Hi, Looking to make a really simple random number generator method in C. The numbers should be between 0 and 24 and can be for example 14.5f.

Any help would be great, thanks!

flag

4 Answers

vote up 7 vote down check
float getRand() {
  float rnd = rand();
  rnd /= RAND_MAX;
  return rnd * 24.0f;
}

Make sure you seed the random number generator with srand before use.

link|flag
1  
Note that rand is deprecated on some platforms (OS X, Ubuntu 8.04) in favour of the random, srandom, etc functions. – Dana the Sane Apr 19 at 20:33
Seed before everytime its called? Also seed with what exactly? – loljdawson Apr 19 at 20:58
No... absolutely not every time. Just once before the first call. You can seed with srand(time(0)); – Mehrdad Afshari Apr 19 at 21:02
@Dana: it's not comparable, only rand() is part of C. – Bastien LĂ©onard Apr 19 at 21:02
Working a treat, thanks very much :) – loljdawson Apr 19 at 21:08
show 5 more comments
vote up 4 vote down

The Mersenne_twister is not only very simple, but also very strong.

See the code on the link.

However, if you can use GPL License, use the The GNU Scientific Library (GSL) specific check Random-Number-Generator-Examples from Random-Number-Generation part of the manual

There are many things there, from simple uniform random numbers to other distributions.

link|flag
vote up 2 vote down

You can use C's built in random number generator to get an integer between 0 and 30 thousand something like this:

`srand(time(NULL));
    int x= rand();`

You would just need to do some division to get a decimal number instead of and integer.

link|flag
Note that rand is deprecated on some platforms (OS X, Ubuntu 8.04) in favour of the random, srandom, etc. – Dana the Sane Apr 19 at 20:31
vote up 3 vote down

Have a look at linear congruential generators, they are quite simple to implement even with my inferior math knowledge.

Looks like I misunderstood the original question, I thought you wanted to roll your own generator (for homework, fun etc.)

link|flag
No no, you were on the mark :) Small uni assignment – loljdawson Apr 19 at 20:55
1  
Maybe you can choose this as the correct answer, then? – Rick Copeland Apr 19 at 21:18

Your Answer

Get an OpenID
or

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