vote up 11 vote down star

It is possible to generate a random number between 2 doubles?

Example:

public double GetRandomeNumber(double minimum, double maximum)
{
    return Random.NextDouble(minimum, maximum) 
}

Then I call it with the following:

double result = GetRandomNumber(1.23, 5.34);

Any thoughts would be appreciated.

Thanks!

flag

3 Answers

vote up 26 vote down check

Yes.

Random.NextDouble returns a double between 0 and 1. You then multiply that by the range you need to go into (difference between maximum and minimum) and then add that to the base (minimum).

public double GetRandomNumber(double minimum, double maximum)
{ 
    Random random = new Random();
    return random.NextDouble() * (maximum - minimum) + minimum;
}

Real code should have random be a static member. This will save the cost of creating the random number generator, and will enable you to call GetRandomNumber very frequently. Since we are initializing a new RNG with every call, if you call quick enough that the system time doesn't change between calls the RNG will get seeded with the exact same timestamp, and generate the same stream of random numbers.

link|flag
2  
Just watch out if you call GetRandomNumber() in a loop as it will generate the same value over and over – John Rasch Jun 30 at 17:25
@John - Good point, I added this to my answer. – Michael Jun 30 at 17:30
perfect! this is what I was looking for. Thank you so much – Jason Heine Jun 30 at 17:35
return new Random().NextDouble() * (maximum - minimum) + minimum; is how I'd return it since I'm not using "random" anywhere else in that function. – Zack Jun 30 at 17:47
@Zack - Remember, though that the seed value is likely going to be the same if you use GetRandomNumber() repeatedly in a loop. If you call GetRandomNumber no more than once per millisecond, you should be ok. If you notice your random numbers are repeating, you'll know why. – Charlie Salts Jun 30 at 20:15
vote up 2 vote down

The simplest approach would simply generate a random number between 0 and the difference of the two numbers. Then add the smaller of the two numbers to the result.

link|flag
vote up 1 vote down

You could use code like this:

public double getRandomNumber(double minimum, double maximum) {
    return minimum + randomizer.nextDouble() * (maximum - minimum);
}
link|flag

Your Answer

Get an OpenID
or

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