Random Number Between 2 Double Numbers - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T21:39:38Z http://stackoverflow.com/feeds/question/1064901 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1064901/random-number-between-2-double-numbers 11 Random Number Between 2 Double Numbers Jason Heine 2009-06-30T17:17:54Z 2009-06-30T17:29:46Z <p>It is possible to generate a random number between 2 doubles?</p> <p>Example:</p> <pre><code>public double GetRandomeNumber(double minimum, double maximum) { return Random.NextDouble(minimum, maximum) } </code></pre> <p>Then I call it with the following:</p> <pre><code>double result = GetRandomNumber(1.23, 5.34); </code></pre> <p>Any thoughts would be appreciated.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1064901/random-number-between-2-double-numbers/1064907#1064907 26 Answer by Michael for Random Number Between 2 Double Numbers Michael 2009-06-30T17:20:36Z 2009-06-30T17:29:46Z <p>Yes.</p> <p>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).</p> <pre><code>public double GetRandomNumber(double minimum, double maximum) { Random random = new Random(); return random.NextDouble() * (maximum - minimum) + minimum; } </code></pre> <p>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.</p> http://stackoverflow.com/questions/1064901/random-number-between-2-double-numbers/1064908#1064908 2 Answer by Greg D for Random Number Between 2 Double Numbers Greg D 2009-06-30T17:20:46Z 2009-06-30T17:20:46Z <p>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.</p> http://stackoverflow.com/questions/1064901/random-number-between-2-double-numbers/1064914#1064914 1 Answer by Malcolm for Random Number Between 2 Double Numbers Malcolm 2009-06-30T17:21:47Z 2009-06-30T17:21:47Z <p>You could use code like this:</p> <pre><code>public double getRandomNumber(double minimum, double maximum) { return minimum + randomizer.nextDouble() * (maximum - minimum); } </code></pre>