Random Number Between 2 Double Numbers - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T21:39:38Zhttp://stackoverflow.com/feeds/question/1064901http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1064901/random-number-between-2-double-numbers11Random Number Between 2 Double NumbersJason Heine2009-06-30T17:17:54Z2009-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#106490726Answer by Michael for Random Number Between 2 Double NumbersMichael2009-06-30T17:20:36Z2009-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#10649082Answer by Greg D for Random Number Between 2 Double NumbersGreg D2009-06-30T17:20:46Z2009-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#10649141Answer by Malcolm for Random Number Between 2 Double NumbersMalcolm2009-06-30T17:21:47Z2009-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>