0
votes
4answers
113 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
225 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
89 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
105 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?
…
1
vote
3answers
75 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
54 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
72 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 …
3
votes
6answers
268 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 …
0
votes
5answers
168 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)
4
votes
4answers
100 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. …
1
vote
4answers
71 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
61 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
20 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 …
0
votes
5answers
57 views
SqlServer Rand() question
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.
I tried implementing this using rand(). However, when I have …
2
votes
2answers
213 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 …
