Tagged Questions

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 …
3
votes
6answers
269 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 …
2
votes
3answers
399 views

Java Generate Random number {-1,0,1}

Hi- I need a function that will return a random integer that can be only -1, 0, or 1. Thanks?
7
votes
3answers
1k views

Math.random() versus Random.nextInt(int)

What is the difference between Math.random() * n and Random.nextInt(n) where n is an integer?
9
votes
7answers
796 views

How good is java.util.Random?

Two Questions: Will I get different sequences of numbers for every seed I put into it? Are there some "dead" seeds? (Ones that produce zeros or repeat very quickly.) By the way, which, if any, …
1
vote
4answers
356 views

Please help me get my random number generating working in Java

I am trying to make a Java implementation of the Park-Miller-Carta PRNG random number generator (maybe faster?) Below is the implementation of the Random function in ActionScript 3 from here. return …
9
votes
6answers
1k views

Port of Random generator from C to Java?

George Marsaglia has written an excellent random number generator that is extremely fast, simple, and has a much higher period than the Mersenne Twister. Here is the code with a description: good C …
2
votes
5answers
301 views

problem with Random.nextGaussian()

Random.nextGaussian() is supposed to give random no.s with mean 0 and std deviation 1. Many no.s it generated are outside range of [-1,+1]. how can i set so that it gives normally distributed random …
1
vote
1answer
814 views

Seeding java.util.Random with consecutive numbers

I've simplified a bug I'm experiencing down to the following lines of code: int[] vals = new int[8]; for (int i = 0; i < 1500; i++) vals[new Random(i).nextInt(8)]++; …
0
votes
5answers
399 views

equivalent vb code for a java code

Can anyone tell me what exactly does thi java code do? SecureRandom random = SecureRandom.getInstance("SHA1PRNG"); byte[] bytes = new byte[20]; synchronized (random) { random.nextBytes(bytes); } …
0
votes
2answers
156 views

Opensource Implementation of the Alias Method

I am doing a project at the moment, and in the interest of code reuse, I went looking for a library that can perform some probabilistic accept/reject of an item: i.e., there are three people (a, b …