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!

link|improve this question

feedback

5 Answers

up vote 47 down vote accepted

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|improve this answer
4  
Just watch out if you call GetRandomNumber() in a loop as it will generate the same value over and over – John Rasch Jun 30 '09 at 17:25
@John - Good point, I added this to my answer. – Michael Jun 30 '09 at 17:30
perfect! this is what I was looking for. Thank you so much – Jason Heine Jun 30 '09 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 '09 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 '09 at 20:15
show 2 more comments
feedback

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|improve this answer
feedback

You could use code like this:

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

You could do this:

public class RandomNumbers : Random
{
    public RandomNumbers(int seed) : base(seed) { }

    public double NextDouble(double minimum, double maximum)
    {
        return base.NextDouble() * (maximum - minimum) + minimum;
    }
}
link|improve this answer
feedback

About generating the same random number if you call it in a loop a nifty solution is to declare the new Random() object outside of the loop as a global variable.

Notice that you have to declare your instance of the Random class outside of the GetRandomInt function if you are going to be running this in a loop.

“Why is this?” you ask.

Well, the Random class actually generates pseudo random numbers, with the “seed” for the randomizer being the system time. If your loop is sufficiently fast, the system clock time will not appear different to the randomizer and each new instance of the Random class would start off with the same seed and give you the same pseudo random number.

Source is here : http://www.whypad.com/posts/csharp-get-a-random-number-between-x-and-y/412/

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.