1
vote
4answers
77 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 …
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 …
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
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. …
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)
66
votes
37answers
2k views
Need for predictable random generator
I'm a web-game developer and I got a problem with random numbers. Let's say that a player has 20% chance to get a critical hit with his sword. That means, 1 out of 5 hits should be critical. 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
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 …
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 …
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
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
2answers
199 views
How can I generate random numbers in Python?
Are there any built-in libraries in Python or Numpy to generate random numbers based on various common distributions, such as:
Normal
Poisson
Exponential
Bernoulli
And various others?
Are there …
3
votes
6answers
272 views
C# Normal Random Number
I would like to create a function that accepts Double mean, Double deviation and returns a random number with a normal distribution.
Example: if I pass in 5.00 as the mean and 2.00 as the …
