active questions tagged random-number-generator - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T05:35:33Zhttp://stackoverflow.com/feeds/tag/random-number-generatorhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1692003/pseudorandom-sequence-generator-not-just-a-number-generator1Pseudorandom Sequence Generator not just a number generator.Sam Washburn2009-11-07T04:35:13Z2009-11-07T06:45:57Z
<p>I need an algorithm that pretty much will turn a unix timestamp into a suitably random number, so that if I "play back" the timestamps I get the same random numbers.</p>
<p>And here's what I mean by suitably:</p>
<ol>
<li>Most humans will not detect a loop or pattern in the random numbers.</li>
<li>It need not be cryptographically secure.</li>
<li>All numbers must be capable of being generated. (I've found that LFSR don't do this)</li>
<li>The numbers are 32 bit integers</li>
</ol>
<p>And I would like it to be fairly fast.</p>
<p>So far my idea is to just seed a PRNG over and over, but I'm not sure if that's the best way to handle this.</p>
<p>Any thoughts and ideas will be much appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1691225/good-libraries-for-generating-non-uniform-pseudo-random-numbers2Good libraries for generating non uniform pseudo-random numbers Amokrane2009-11-06T23:28:09Z2009-11-07T05:38:12Z
<p>Hi,</p>
<p>I'm looking for known libraries that are able to generate non uniformly distributed random numbers for C, C++ and Java.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1667264/quantis-quantum-random-number-generator-qrng-any-reviews1Quantis Quantum Random Number Generator (QRNG) - any reviews?tinkertim2009-11-03T13:12:06Z2009-11-03T14:20:40Z
<p>I am thinking about getting <a href="http://www.idquantique.com/products/quantis.htm" rel="nofollow">one of these</a> (PCI) to set up an internal entropy pool similar to <a href="http://random.irb.hr/" rel="nofollow">this service</a> who incidentally brought us <a href="http://random.irb.hr/signup.php" rel="nofollow">fun captcha challenges</a>.</p>
<p>Prior to lightening my wallet, I'm hoping to gather feedback from people who may be using this device. As there is no possible 'correct' answer, I am making this CW and tagging it as subjective.</p>
<p>I'm undertaking a project to help write Monte Carlo simulations for a <a href="http://nettingnations.org" rel="nofollow">non profit</a> that distributes mosquito nets in Malaria stricken areas. The idea is to model areas to determine the best place to distribute mosquito nets. During development, I expect to consume gigs if not more of the RNG output. We really need our own source.</p>
<p>Is this device reliable? Does it have to be re-started often? Is its bandwidth really as advertised? It passes all tests, as far as randomness goes (i.e. NIST/DIEHARD). What I don't want is something in deadlock due to some ioctl in disk sleep that does nothing but radiate heat.</p>
<p>This is not a spamvertisement, I'm helping out of pocket and I really, really want to know if such a large purchase will bear fruit. I can't afford to build a HRNG based on radioactive decay, this looks like the next best thing.</p>
<p>Any comments are appreciated. I will earn zero rep for this, please do not vote to close. This is no different than questions regarding the utilization of some branded GPU for some odd purpose.</p>
<p>Answers pointing to other solutions will be gladly accepted, I'm not married to this idea.</p>
http://stackoverflow.com/questions/1657474/sqlserver-rand-question0SqlServer Rand() questionJeff2009-11-01T15:47:42Z2009-11-01T17:03:38Z
<p>I am writing a procedure where each call it needs to get a single random number. This procedure is called from our .net web service. </p>
<p>I tried implementing this using rand(). However, when I have multiple calls to the stored procedure within milliseconds, I am getting a lot of collisions in that the same random number is being generated. If there is a space of about 20 or 30 ms between subsequent calls it appears to work ok.</p>
<p>It appears that rand() is reseeded each stored procedure call by SqlServer. From what I understand this is a problem because one should seed a random number generator once and that one doesn't get a good sequence of pseudo-random numbers if one is reseeding each call to rand. Also, it appears that calls to the same sp that are within 1 or 2 milliseconds get seeded with the same value.</p>
<p>Here is the statement itself in the stored procedure.</p>
<pre><code>DECLARE @randomNumber char(9)
SET @randomNumber = RIGHT('00000' + CAST(CAST(rand()*100000 AS INT) AS VARCHAR(5)),5)
+ RIGHT('00000' + CAST(CAST(rand()*10000 AS INT) AS VARCHAR(4)),4)
</code></pre>
<p>Does anyone have a suggestion for fixing this? </p>
<p>Will I have to write my own random number generator that is seeded once and saves its state in a table across calls? How does SQL Server seed rand()? Is it truly random or if you call an sp within 1 or 2 milliseconds of each other on separate connections will it be seeded with the same seed causing a collision?</p>
http://stackoverflow.com/questions/1655559/how-can-i-generate-random-numbers-in-python2How can I generate random numbers in Python?Nathan Fellman2009-10-31T20:38:36Z2009-11-01T01:21:33Z
<p>Are there any built-in libraries in Python or Numpy to generate random numbers based on various common distributions, such as:</p>
<ul>
<li>Normal</li>
<li>Poisson</li>
<li>Exponential</li>
<li>Bernoulli</li>
</ul>
<p>And various others?</p>
<p>Are there any such libraries with multi-variate distributions?</p>
http://stackoverflow.com/questions/1189008/intel-math-kernel-on-windows-calling-from-c-for-random-number-generation4Intel Math Kernel on windows, calling from c# for random number generationm3ntat2009-07-27T15:58:39Z2009-10-30T19:38:51Z
<p>Has anyone used the <strong>Intel Math Kernel library</strong> <a href="http://software.intel.com/en-us/intel-mkl/" rel="nofollow">http://software.intel.com/en-us/intel-mkl/</a></p>
<p>I am thinking of using this for <strong>Random Number generation from a C# application</strong> as we need extreme performance (1.6 trillion random numbers per day).</p>
<p>Also any advice on minimising the overhead of <strong>consuming functions from this c++ code in my c#</strong> Monte Carlo simulation.</p>
<ul>
<li>Am about to download the Eval from the site and above and try and benchmark this from my c# app, any help much appreciated.</li>
</ul>
<p>Thanks</p>
http://stackoverflow.com/questions/757151/random-number-generation-on-spartan-3e0Random number generation on Spartan-3Eakosch2009-04-16T17:15:40Z2009-10-29T15:57:01Z
<p>I need to generate pseudo-random numbers for my genetic algorithm on a Spartan-3E FPGA and i want to implement it in verilog: could you give me any pointers on this?</p>
http://stackoverflow.com/questions/1641371/php-random-numbers-1PHP Random NumbersBrendan Berman2009-10-29T02:55:43Z2009-10-29T04:08:54Z
<p>i need to print out numbers 1-100 in a random order. the print statement should be:</p>
<p>echo 'h{'.$num.'}';</p>
<p>what is the shortest code to do this?</p>
http://stackoverflow.com/questions/1640258/need-a-fast-random-generator-for-c1Need a fast random generator for c++Martin Andersson2009-10-28T21:33:34Z2009-10-28T22:08:28Z
<p>Hi guys.</p>
<p>I'm trying to do some opt-3 swapping on my TSP generator for euclidian distances, and since I in many cases have more than ~500 nodes, I need to randomly select at least 1 of the 3 nodes that I want to try swapping.</p>
<p>So basically I need a random-number function that's <strong>fast</strong>. (the normal rand() is way too slow) It doesn't have to be awesome, just good <em>enough</em>.</p>
<p>EDIT:
I forgot to mention, i'm sitting at an environment where I can't add any libraries except the Standard Language Library (such as STL, iostream etc). So no boost =/</p>
http://stackoverflow.com/questions/1638237/boost-random-number-library-use-same-random-number-generator-for-different-varia0boost random number library, use same random number generator for different variate generators scandido2009-10-28T16:04:38Z2009-10-28T17:06:00Z
<p>It seems that one can use the following code to produce random numbers from a particular Normal distribution:</p>
<pre><code>float mean = 0, variance = 1;
boost::mt19937 randgen(static_cast<unsigned int>(std::time(0)));
boost::normal_distribution<float> noise(mean, variance);
variate_generator<mt19937, normal_distribution<float> > nD(randgen, noise);
float random = nD();
</code></pre>
<p>This works fine, however, I would like to be able to draw numbers from several distributions, i.e. one would think something like:</p>
<pre><code>float mean1 = 0, variance1 = 1, mean2 = 10, variance2 = 0.25;
boost::mt19937 randgen(static_cast<unsigned int>(std::time(0)));
boost::normal_distribution<float> noise1(mean1, variance1);
boost::normal_distribution<float> noise2(mean2, variance2);
variate_generator<mt19937, normal_distribution<float> > nD(randgen, noise1);
variate_generator<mt19937, normal_distribution<float> > nC(randgen, noise2);
float random1 = nD();
float random2 = nC();
</code></pre>
<p>However, the problem appears to be that nD() and nC() are generating similar sequences of numbers. I hypothesize this is because the constructor for variate_generator appears to make a copy of randgen, not use it explicitly. Thus, the same psuedo-random sequence is being generated and simply pushed through different transformations (due to the different parameters of the distributions). </p>
<p>Does anyone know if there is a way, in Boost, to create a single random number generator and use it for multiple distributions? Alternatively, does the design of the Boost random library intend users to create one random number generator per distribution? Obviously, I could write code to transform a sequence of uniform random numbers to a sequence from an arbitrary distribution, but I'm looking for something simple and already built-in to the library. </p>
<p>Thanks in advance for your help.</p>
http://stackoverflow.com/questions/1626023/c-normal-random-number3C# Normal Random NumberJ.Hendrix2009-10-26T17:12:10Z2009-10-26T21:50:58Z
<p>I would like to create a function that accepts <code>Double mean</code>, <code>Double deviation</code> and returns a random number with a normal distribution. </p>
<p>Example: if I pass in 5.00 as the mean and 2.00 as the deviation, 68% of the time I will get a number between 3.00 and 7.00</p>
<p>My statistics is a little weak…. Anyone have an idea how I should approach this? My implementation will be C# 2.0 but feel free to answer in your language of choice as long as the math functions are standard.</p>
<p>I think <a href="http://stackoverflow.com/questions/1197321/need-help-generating-discrete-random-numbers-from-distribution/1197393#1197393">this</a> might actually be what I am looking for. Any help converting this to code?</p>
<p>Thanks in advance for your help.</p>
http://stackoverflow.com/questions/1621326/randoms-numbers-on-iphone0Randoms numbers on iPhoneleon2009-10-25T16:30:33Z2009-10-25T21:50:27Z
<p>Hi,
What is better? I have the prioritized in the order of "goodness", am I correct?</p>
<ol>
<li>arc4random</li>
<li>randmom</li>
<li>rand</li>
</ol>
<p>1 - best, 3 - worst</p>
<p>I need a really good randmon number gen for a lowe number (< 50), so I using % 50 to obtain numbers below 50.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1619836/c-random-number2C# Random Numberthecaptain02202009-10-25T02:46:12Z2009-10-25T13:46:38Z
<p>I am working on a project in which I need to generate 8 random numbers. I am having an issue with the random number part being very time consuming for some reason. What I mean by 8 random numbers is I need a string that is 8 characters long consisting of the numbers 0-9. Example 01234567 or 23716253 etc. </p>
<p>I tried looping 8 times generating a random number with Random.Next(0, 9) and just turning them to a string and concatenating them to the final string. I also tried generating a random number using Random.Next(0, 99999999) and just converting the number to a string and padding it to 8 with 0's. </p>
<p>It seems like both are pretty slow and I need to come up with a faster way. I dont mind making calls to other languages or somthing either if it will help performance.</p>
<p>Here is some extra info to add. I dont think im going to find anything super efficient. I have to generate this number about 50000 times. When I ran a test with 47000 it took 8:39 seconds. This is only like .011 seconds each time but it was just slowing thins down because im also working with a has table. I also called hashtable.ContainsKey() all 47000 times and it only took a total of 58 seconds. It just is such a big difference. </p>
<p>Here is the code I origanally used.
Convert.ToString(rg.Next(0, 99999999)).PadLeft(8, '0');</p>
<p>Here is some code to try to figure this out. Here are the times that I get
Contains Value: 00:00:00.4287102
Contains Key: 00:01:12.2539062
Generate Key: 00:08:24.2832039
Add: 00:00:00</p>
<pre><code> TimeSpan containsValue = new TimeSpan();
TimeSpan containsKey = new TimeSpan();
TimeSpan generateCode = new TimeSpan();
TimeSpan addCode = new TimeSpan();
StreamReader sr = new StreamReader(txtDictionaryFile.Text);
string curWord = sr.ReadLine().ToUpper();
int i = 1;
DateTime start;
DateTime end;
while (!sr.EndOfStream)
{
start = DateTime.Now;
bool exists = mCodeBook.ContainsValue(curWord);
end = DateTime.Now;
containsValue += end - start;
if (!exists)
{
string newCode;
bool kExists;
do
{
start = DateTime.Now;
Random rnd = new Random();
StringBuilder builder = new StringBuilder(8);
byte[] b = new byte[8];
rnd.NextBytes(b);
for (int i = 0; i < 8; i++)
{
builder.Append((char)((b[i] % 10) + 48));
}
newCode = builder.ToString();
end = DateTime.Now;
generateCode += end - start;
start = DateTime.Now;
kExists = mCodeBook.ContainsKey(newCode);
end = DateTime.Now;
containsKey += end - start;
}
while (kExists);
start = DateTime.Now;
mCodeBook.Add(newCode, curWord);
end = DateTime.Now;
addCode += start - end;
}
i++;
curWord = sr.ReadLine().ToUpper();
}
</code></pre>
http://stackoverflow.com/questions/1257299/why-use-the-c-class-system-random-at-all-instead-of-system-security-cryptography6Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator?Lernkurve2009-08-10T21:25:54Z2009-10-25T09:09:53Z
<p>Why would anybody use the "standard" random number generator from <a href="http://msdn.microsoft.com/en-us/library/system.random.aspx" rel="nofollow">System.Random</a> at all instead of always using the cryptographically secure random number generator from <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.randomnumbergenerator.aspx" rel="nofollow">System.Security.Cryptography.RandomNumberGenerator</a> (or its subclasses because RandomNumberGenerator is abstract)?</p>
<p>Nate Lawson tells us in his Google Tech Talk presentation "<a href="http://www.youtube.com/watch?v=ySQl0NhW1J0" rel="nofollow">Crypto Strikes Back</a>" at minute 13:11 not to use the "standard" random number generators from Python, Java and C# and to instead use the cryptographically secure version.</p>
<p>I know the difference between the two versions of random number generators (see <a href="http://stackoverflow.com/questions/101337/what-is-the-difference-between-a-randomly-generated-number-and-secure-randomly-ge">question 101337</a>).</p>
<p>But what rationale is there to not always use the secure random number generator? Why use System.Random at all? Performance perhaps?</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game11What is a good random number generator for a game?mmyers2009-06-25T23:34:43Z2009-10-23T21:36:23Z
<p>What is a good random number generator to use for a game in C++?</p>
<p>My considerations are:</p>
<ol>
<li>Lots of random numbers are needed, so speed is good.</li>
<li>Players will always complain about random numbers, but I'd like to be able to point them to a reference that explains that I really did my job. </li>
<li>Since this is a commercial project which I don't have much time for, it would be nice if the algorithm either a) was relatively easy to implement or b) had a good non-GPL implementation available.</li>
<li>I'm already using <code>rand()</code> in quite a lot of places, so any other generator had better be good to justify all the changes it would require.</li>
</ol>
<p>I don't know much about this subject, so the only alternative I could come up with is the <a href="http://en.wikipedia.org/wiki/Mersenne%5FTwister" rel="nofollow">Mersenne Twister</a>; does it satisfy all these requirements? Is there anything else that's better?</p>
<p><strong>Edit:</strong> Mersenne Twister seems to be the consensus choice. But what about point #4? Is it really that much better than <code>rand()</code>?</p>
<p><strong>Edit 2:</strong> Let me be a little clearer on point 2: There is no way for players to cheat by knowing the random numbers. Period. I want it random enough that people (at least those who understand randomness) can't complain about it, but I'm not worried about predictions.
That's why I put speed as the top consideration.</p>
<p><strong>Edit 3:</strong> I'm leaning toward the Marsaglia RNGs now, but I'd still like more input. Therefore, I'm setting up a bounty.</p>
<p><strong>Edit 4:</strong> Just a note: I intend to accept an answer just before midnight UTC today (to avoid messing with someone's rep cap). So if you're thinking of answering, don't wait until the last minute!<br />
Also, I like the looks of Marsaglia's XORshift generators. Does anyone have any input about them?</p>
http://stackoverflow.com/questions/1614244/dice-roller-using-tkinter1Dice Roller using TkinterBrian Zylstra2009-10-23T15:34:24Z2009-10-23T15:59:42Z
<p>Thank you to everybody who helped answer my last <a href="http://stackoverflow.com/questions/1579741/is-there-a-random-function-in-python-that-accepts-variables">question</a>: </p>
<p>My friend took the code, and has attempted to use Tkinter to make a box that we could use to make things nicer-looking, but he has been unable to integrate the dice roller from the last question and the Tkinter. Any help or ideas in getting the dice roller into the code below would be wonderful!</p>
<pre><code>from Tkinter import *
def callme():
label3 = Label(root, text = 'Haha! I lied!')
label3.pack(padx = 10, pady = 10)
root = Tk()
label = Label(root, text = 'How many dice do you want to roll?')
label.pack(padx = 10, pady = 10)
entry = Entry(root,bg = 'white').pack(padx = 10, pady = 10)
label2 = Label(root, text = 'How many dice do you want to roll?')
label2.pack(padx = 10, pady = 10)
entry = Entry(root,bg = 'white').pack(padx = 10, pady = 10)
frame = Frame(root, bg = 'yellow')
button = Button(frame, command = callme, text = 'Roll!',width = 5, height = 2)
frame.pack()
button.pack(padx=10,pady=10)
root.mainloop()
</code></pre>
http://stackoverflow.com/questions/1607919/properly-seeding-random-numbers-in-class-library-called-from-asp-net-web-page0Properly Seeding Random numbers in Class Library called from ASP.Net Web Pagejkelley2009-10-22T15:11:49Z2009-10-23T12:20:23Z
<p>I'm experiencing a problem with my random number generator in a class library returning the same value repeatedly. It returns the same value b/c it is repeatedly initialized with the default constructor - for example: <br /></p>
<pre><code>public static T GetRandomValue<T>(T[] array)
{
int ndx = new Random().Next(array.Length);
return array[ndx];
}
</code></pre>
<p>This is called repeatedly from another method before the system clock can change, so it is initialized with the same random seed, giving the same value. (see <a href="http://stackoverflow.com/questions/932520/why-does-it-appear-that-my-random-number-generator-isnt-random-in-c">SO article for apparently malfunctioning random number generator</a>) It is used to select a random format string for some text generation algorithms. Because it is called in rapid sequence every time my different bits of text generates with a homogeneous formatting string, which is undesirable for the application.
<br />
<br />
It is typically called from an asp.net webpage, and I'm wondering what the best approach is to produce a random sequence, without creating performance issues for the pages that call the method repeatedly.</p>
<p>A web page calls the library method, which calls the random number. I am wondering if i can use this approach for a static number generator instead. Are there performance issues associated with calling a static method like this from a webpage?</p>
<pre><code>public class Utility
{
public static Random random = new Random();
public static T GetRandomValue<T>(T[] array)
{
int ndx = random.Next(array.Length);
return array[ndx];
}
}
</code></pre>
<p>A lock on "random" and "ndx" may be needed too. Is there a better practice in general for handling this type of seeding in a class library?</p>
http://stackoverflow.com/questions/1587799/why-would-rand-return-a-negative-value-when-min-and-max-values-are-positive0Why would rand() return a negative value when min and max values are positive?Toytown Mafia2009-10-19T09:46:49Z2009-10-19T10:27:28Z
<p>Hi,</p>
<p>I have a simple piece of PHP code which requires a random number to be created. However, even though the input is always positive, it sometimes returns a negative output.</p>
<p>Here's my debug code:</p>
<pre><code>$debt = rand($this->gdp * 0.02, $this->gdp * 0.17);
echo "<p>GDP: ".$this->gdp." rand(".$this->gdp * 0.02." , ".$this->gdp * 0.17.") = <strong>".$debt."</strong></p>";
</code></pre>
<p>Here's an example output:</p>
<pre><code>GDP: 219254674605 rand(4385093492.1 , 37273294682.85) = 75276999
GDP: 345015694865 rand(6900313897.3 , 58652668127.05) = -1636353016
GDP: 90445390920 rand(1808907818.4 , 15375716456.4) = -165604705
GDP: 3412849650 rand(68256993 , 580184440.5) = 347516196
GDP: 2939111315 rand(58782226.3 , 499648923.55) = 119181875
GDP: 26369065 rand(527381.3 , 4482741.05) = 3632416
GDP: 215838135 rand(4316762.7 , 36692482.95) = 28784811
GDP: 511763530 rand(10235270.6 , 86999800.1) = 39954394
GDP: 42416245 rand(848324.9 , 7210761.65) = 3974882
GDP: 75090235 rand(1501804.7 , 12765339.95) = 5201966
</code></pre>
<p>So why would a <code>rand()</code> of two positive numbers give a negative return?</p>
<p>Any help would be much appreciated!</p>
http://stackoverflow.com/questions/90184/pseudo-random-generator-assembler4Pseudo random generator, AssemblerTCJ2008-09-18T05:07:49Z2009-10-18T12:35:33Z
<p>Which "random" numbers generator algorithm is the best for an assembler program? Something easy, not a long piece of code.</p>
<p>Not external library allowed, just trying to keep it simple.</p>
<p>@<a href="#90284" rel="nofollow">Bill Barksdale</a>: I'm looking for an easy algorithm to use in a assembler program assigned in a course. </p>
http://stackoverflow.com/questions/160890/generating-random-numbers-in-objective-c8Generating Random Numbers in Objective-Crustyshelf2008-10-02T04:35:21Z2009-10-17T16:28:13Z
<p>I'm a java head mainly, and I want a way to generate a pseudo-random number between 0 and 74. In java I would use the method:</p>
<pre><code>Random.nextInt(74)
</code></pre>
<p>I'm not interested in a discussion about seeds or true randomness, just how you accomplish the same task in Objective-C. I've scoured The Google, and it just seems to be lots of different and conflicting bits of information.</p>
http://stackoverflow.com/questions/584566/pseudo-random-number-generator7Pseudo-random number generatorPhantom732009-02-25T03:08:27Z2009-10-16T16:31:26Z
<p>What is the best way to create the best pseudo-random number generator? (any language works)</p>
http://stackoverflow.com/questions/1557208/generating-random-number-between-1-1-in-c0Generating random number between [-1, 1] in C?itsaboutcode2009-10-12T22:09:12Z2009-10-15T19:41:01Z
<p>I have seen many questions on SO about this particular subject but none of them has any answer for me, so I thought of asking this question.</p>
<p>I wanted to generate a random number between [-1, 1]. How I can do this? </p>
http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected34Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?sudo bountiful2008-09-26T01:57:39Z2009-10-13T16:41:47Z
<p>The question posed came about during a 2nd Year Comp Science lecture while discussing the impossibility of generating numbers in a deterministic computational device.</p>
<p>This was the only suggestion which didn't depend on non-commodity-class hardware.</p>
<p>Subsequently nobody would put their reputation on the line to argue definitively for or against it. </p>
<p>Anyone care to make a stand for or against. If so, how about a mention as to a possible implementation?</p>
http://stackoverflow.com/questions/1558321/how-to-generate-random-numbers-in-microcontrollers-efficiently3How to generate random numbers in microcontrollers efficiently?Donotalo2009-10-13T05:21:21Z2009-10-13T13:47:37Z
<p>Any general guidelines? Or particular fast method?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1542911/obscure-vbmath-random-numbers-generator-behavior0Obscure VBMath random numbers generator behavior.kripto_ash2009-10-09T10:00:25Z2009-10-13T13:29:08Z
<p>Hi, </p>
<p>I want to repeat a random number sequence generated by a legacy software using the VBMath.Rnd and VBMath.Randomize functions in VB .NET</p>
<p>Reading on the documentation for those functions on <a href="http://msdn.microsoft.com/en-us/library/ht1sfkd6.aspx" rel="nofollow">MSDN</a> i found that you are supposed to "reset" the generator calling Rnd with a negative value if you want the same seed to give you the same result sequence each time.</p>
<p>But doing some tests... things didn't work as expected.</p>
<p>The legacy software does something like this at the start of the application on different executions:</p>
<pre><code>float[] rNums = new float[4];
VBMath.Randomize(154341.77394338892);
for (int index = 0; index < 4; index++)
{
rNums[index] = VBMath.Rnd();
}
</code></pre>
<p>And my code does something like this:</p>
<pre><code>VBMath.Rnd(-1);
VBMath.Randomize(154341.77394338892);
for (int index = 0; index < 4; index++)
{
Console.WriteLine("rNum[" + index + "] " + rNums[index] + " = " + VBMath.Rnd());
}
</code></pre>
<p>The results for this test are:</p>
<pre><code>rNum[0] 0,6918146 = 0,2605162
rNum[1] 0,5121228 = 0,4748411
rNum[2] 0,8309224 = 0,8112976
rNum[3] 0,972851 = 0,8011347
</code></pre>
<p>The sequence that i want to reproduce in the second code any number of times is the sequence generated from the hard coded initial state of the generator. That means the sequence you would get if you run the first code alone.</p>
<p>I can not change the first code.</p>
<p>Any idea on why the VBMath.Rnd and VBMath.Randomize functions arent working as expected?</p>
<p>Did i miss something?</p>
<p><hr /></p>
<h2>ANSWER</h2>
<p>Thee problem is that since the legacy code doesn't call Rnd with a negative value, the generator doesn't clear its state and the call to Rnd gets chained to the previous value of the seed (in this case, the hard-coded value). </p>
<p>To solve the problem and be able to repeat the process all over again without all the problems that would imply "reproducing" the initial state, i cloned the generator code and patched it so i could reproduce the same situation every time depending on a parameter.</p>
<p>I know.. its ugly.. but it solves my problem (Btw i also know that there are some rounding errors and that the generated values are not exact.. they differ in like the last digit or something) but i don't need exact precision. </p>
<p>The rounding error probably comes from my choice of language for the cloning of the algorithm. If someone could help out on how to get the exact same result (match the rounding errors) that would be nice.</p>
<p>The patched code follows.</p>
<pre><code>public sealed class RndGenerator
{
static int m_rndSeed = 0x50000;
// This is the value that the programmer sets the seed at ProjectData object
// initialization
const int CONSTANT_INIT_RNDSEED = 0x50000;
// Methods
private static float GetTimer()
{
DateTime now = DateTime.Now;
return (float)(((((60 * now.Hour) + now.Minute) * 60) + now.Second) + (((double)now.Millisecond) / 1000.0));
}
public static void Randomize()
{
float timer = GetTimer();
int rndSeed = m_rndSeed;
int num = BitConverter.ToInt32(BitConverter.GetBytes(timer), 0);
num = ((num & 0xffff) ^ (num >> 0x10)) << 8;
rndSeed = (rndSeed & -16776961) | num;
m_rndSeed = rndSeed;
}
public static void Randomize(double Number)
{
Randomize(Number, false);
}
public static void Randomize(double Number, bool useHardCodedState)
{
int num;
int rndSeed = 0;
if (useHardCodedState)
rndSeed = CONSTANT_INIT_RNDSEED;
else
rndSeed = m_rndSeed;
if (BitConverter.IsLittleEndian)
{
num = BitConverter.ToInt32(BitConverter.GetBytes(Number), 4);
}
else
{
num = BitConverter.ToInt32(BitConverter.GetBytes(Number), 0);
}
num = ((num & 0xffff) ^ (num >> 0x10)) << 8;
rndSeed = (rndSeed & -16776961) | num;
m_rndSeed = rndSeed;
}
public static float Rnd()
{
return Rnd(1f);
}
public static float Rnd(float Number)
{
int rndSeed = m_rndSeed;
if (Number != 0.0)
{
if (Number < 0.0)
{
long num3 = BitConverter.ToInt32(BitConverter.GetBytes(Number), 0);
num3 &= (long)0xffffffffL;
rndSeed = (int)((num3 + (num3 >> 0x18)) & 0xffffffL);
}
rndSeed = (int)(((rndSeed * 0x43fd43fdL) + 0xc39ec3L) & 0xffffffL);
}
m_rndSeed = rndSeed;
return (((float)rndSeed) / 1.677722E+07f);
}
}
</code></pre>
http://stackoverflow.com/questions/1554958/how-different-do-random-seeds-need-to-be1How different do random seeds need to be?unknown (yahoo)2009-10-12T14:39:52Z2009-10-12T15:48:08Z
<p>Consider code like this (Python):</p>
<pre><code>import random
for i in [1, 2, 3, 4]:
random.seed(i)
randNumbers = [random.rand() for i in range(100)] # initialize a list with 100 random numbers
doStuff(randNumbers)
</code></pre>
<p>I want to make sure that randNumbers differ significantly from one call to another. Do I need to make sure the seed numbers differ significantly between the subsequent calls, or is it sufficient that the seeds are different (no matter how)?</p>
<p>To the pedants: please realize the above code is super-over-simplified </p>
http://stackoverflow.com/questions/1550947/how-do-you-generate-cryptographically-secure-random-numbers-with-php3How do you generate cryptographically secure random numbers with PHP?Travis2009-10-11T15:23:38Z2009-10-11T15:36:03Z
<p>We need to generate a cryptographically random string to use as an authentication token, which will be tied to session data in the database. We are using PHP, which doesn't appear to have a suitable random number generator built-in. How can we generate a cryptographically secure random string of N length using php?</p>
<p>Also note, due to the nature of our application, shell_exec is off the table.</p>
http://stackoverflow.com/questions/1527938/tsql-generate-5-character-length-string-all-digits-0-9-that-doesnt-already-ex2TSQL Generate 5 character length string, all digits [0-9] that doesn't already exist in database...Brad2009-10-06T20:27:48Z2009-10-08T19:11:25Z
<p>What's the best way to do this?</p>
<p>I need to generate a 5 digit length string where all the characters are numeric. However, I need to be able to do this 'x' amount of times (user variable) and store this random strings in a database. Furthermore, I can't generate the same string twice. Old strings will be removed after 6 months.</p>
<p>Pseudo-code</p>
<pre><code>DECLARE @intIterator INT,
@intMax
SET @intIterator = 1
SET @intMax = 5 (number of strings to generate)
WHILE @intIterator <= @intMax
BEGIN
-- GENERATE RANDOM STRING OF 5 NUMERIC DIGITS
???
-- INSERT INTO DB IF DOESN'T ALREADY EXIST
INSERT INTO TSTRINGS
SELECT @RANDOMSTRING
IF @@ERROR = 0
SET @intIterator = @intIterator + 1
END
</code></pre>
<p>I know this probably isn't the best way to do it, so advice is appreciated. But really looking for ideas on how to generate the numeric 5 length strings.</p>
http://stackoverflow.com/questions/1534285/non-uniform-random-number-generator-implementation4Non-Uniform Random Number Generator Implementation?Gwen2009-10-07T21:24:27Z2009-10-08T07:42:50Z
<p>I need a random number generator that picks numbers over a specified range with a programmable mean.</p>
<p>For example, I need to pick numbers between 2 and 14 and I need the average of the random numbers to be 5.</p>
<p>I use random number generators a lot. Usually I just need a uniform distribution.</p>
<p>I don't even know what to call this type of distribution. </p>
<p>Thank you for any assistance or insight you can provide.</p>
http://stackoverflow.com/questions/1535654/crappy-random-number-generator4Crappy Random Number Generatorthornate2009-10-08T04:38:41Z2009-10-08T07:04:04Z
<p>This may sound like an odd question, but where can I find a random number generator that works in C or C++ that is not very good?</p>
<p>Context: I'm creating some tree graph plotting software and testing it by using multi-digit random numbers (so each digit becomes a node in the tree). The random number generator I've been using - which is the one that comes with the GNU C++ compiler - gives me a nice spread of values. That's good, but I want to see how the table looks when the numbers clump together and are less homogenous. </p>
<p>Can anyone suggest a random number generator that has been proven to be not-so-random?</p>
<p>(Oh, any anyone who links to xkcd and/or suggests I just return 4 will get sarcasm in response).</p>