1
vote
3answers
57 views
java.util.Random peculiarity
So here is one of the simplest things one might do:
Random rng = new Random();
int a = rng.nextInt(10);
int b = rng.nextInt(10);
So far so good. But we want to avoid having equal a and b, so …
1
vote
5answers
78 views
Mersenne Twister: seeding & visualization
I am using a C# implementation of Mersenne Twister I downloaded from CenterSpace. I have two problems with it:
No matter how I seed the algorithm it does not pass DieHard tests, and by that I mean I …
2
votes
5answers
215 views
Fast Random Generator
How can I make a fast RNG (Random Number Generator) in C# that support filling an array of bytes with a maxValue (and/or a minValue)?
I have found this http://www.codeproject.com/KB/cs/fastrandom.aspx …
2
votes
3answers
96 views
how do i seed a random class to avoid getting duplicate random values
i have the following code inside a static method in a static class
Random r = new Random();
int randomNumber = r.Next(1,100);
i have this inside a loop and i keep getting the same randomNumber?
…
3
votes
6answers
260 views
Generating correlated numbers
Here is a fun one: I need to generate random x/y pairs that are correlated at a given value of Pearson product moment correlation coefficient, or Pearson r. You can imagine this as two arrays, array …
4
votes
4answers
97 views
Why isn’t randomized probing more popular in hash table implementations?
According to various sources, such as Wikipedia and various .edu websites found by Google, the most common ways for a hash table to resolve collisions are linear or quadratic probing and chaining. …
4
votes
7answers
986 views
Fast pseudo random number generator for procedural content
I am looking for a pseudo random number generator which would be specialized to work fast when it is given a seed before generating each number. Most generators I have seen so far assume you set seed …
36
votes
22answers
2k views
Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?
The question posed came about during a 2nd Year Comp Science lecture while discussing the impossibility of generating numbers in a deterministic computational device.
This was the only suggestion …
1
vote
3answers
72 views
Generating a 160bit string which is stored in an array.
Hello! I'm trying to generate a random 160bit string which is supposed to be stored in a character array named str[20]. It's obvious that the array holds 20 characters. How can I change the 160bits …
0
votes
4answers
50 views
Updating on screen count as javascript code runs.
Hey, I've just started learning JavaScript and I'm making a little script that generates two numbers, the first number stays the same but the second number gets regenerated if it doesn't match the …
0
votes
1answer
64 views
Correct use of s/rand or Boost::random
I know this kind of question has been asked a few times, but alot of them answers boil down to RTFM, but I'm hoping if I can ask the right question... I can get a quasi-definitive answer for everyone …
0
votes
5answers
153 views
How does a random number generator work?
How do random number generator works? (for example in C/C++ Java)
How can I write my own random number generator? (for example in C/C++ Java)
1
vote
4answers
68 views
Pseudorandom Sequence Generator not just a number generator.
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.
And here's what I mean by …
2
votes
6answers
58 views
Good libraries for generating non uniform pseudo-random numbers
Hi,
I'm looking for known libraries that are able to generate non uniformly distributed random numbers for C, C++ and Java.
Thanks
1
vote
0answers
15 views
Quantis Quantum Random Number Generator (QRNG) - any reviews?
I am thinking about getting one of these (PCI) to set up an internal entropy pool similar to this service who incidentally brought us fun captcha challenges.
Prior to lightening my wallet, I'm hoping …
