Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to generate a random number that's between 0 and 1. I keep reading about arc4random(), but there isn't any information about getting a float from it. How do I do this?

share|improve this question
What exactly is your question? – Philippe Leybaert Mar 2 '11 at 19:34
Not duplicates, this appears to be the only question explicitly pertaining to floats. – P i May 29 '11 at 8:56

7 Answers

up vote 44 down vote accepted
#define ARC4RANDOM_MAX      0x100000000
...
double val = ((double)arc4random() / ARC4RANDOM_MAX);

A bit more details here

share|improve this answer
Thank You. Most straight forward answer I have seen. I will read up on your link and get additional details on this. Thanks again. – jini Mar 2 '11 at 19:40
It's weird that ARC4RANDOM_MAX has to be manually defined, but 0x100000000 is 4294967296, which is ULONG_MAX + 1. Where is it documented that arc4random()'s max is ULONG_MAX anyhow? – bobobobo Sep 15 '12 at 16:53
@bobobobo, from here: developer.apple.com/library/mac/#documentation/Darwin/Reference/… The arc4random() function returns pseudo-random numbers in the range of 0 to (2**32)-1 – Vladimir Sep 15 '12 at 17:18
@bobobobo, although I agree that defining constant for this case does not look nice – Vladimir Sep 15 '12 at 17:18

This function works for negative float ranges as well:

float randomFloat(float Min, float Max){
    return ((arc4random()%RAND_MAX)/(RAND_MAX*1.0))*(Max-Min)+Min;
}
share|improve this answer
Extraneous modulus operation. use Min+(Max-Min)*((float)arc4random())/ULONG_MAX instead. The (float) cast is just paranoia. – bobobobo Sep 15 '12 at 17:28
(float)rand() / RAND_MAX

The previous post above stating "rand()" alone was incorrect. This is the correct way to use rand().

This will create a number between 0 -> 1

BSD docs:

The rand() function computes a sequence of pseudo-random integers in the
range of 0 to RAND_MAX (as defined by the header file "stdlib.h").

share|improve this answer
rand() 

by default produces a random number(float) between 0 and 1.

share|improve this answer
3  
This produces a random int for me. – AlexQueue Jan 9 at 1:24
rand() doesn't seem to exist on iOS, and if it did, it would produce an integer like it does on every other *NIX. – Josh Caswell Apr 22 at 5:06

How about this operation ((CGFloat)(rand()%100)/100) ?

share|improve this answer
float x = arc4random() % 11 * 0.1;

That produces a random float bewteen 0 and 1. More info here

share|improve this answer
2  
Note: only gives 11 discrete values: 0.0, 0.1, 0.2, ..., 1.0 – TalkLittle Sep 11 '12 at 19:26
4  
Yes, the modulus operation cuts arc4random()'s result to being between 0 and 10, then he divides it by 10. This answer is really bad for general use. – bobobobo Sep 13 '12 at 16:26

To generate a random number between two numbers

int minValue = ...

int maxValue = ...

int randomValue = minValue + arc4random() % (MaxValue - minValue);

happy Coding :)

share|improve this answer
This doesn't produce a float. – Josh Caswell Apr 22 at 5:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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