2
votes
3answers
348 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
850 views
Math.random() versus Random.nextInt(int)
What is the difference between Math.random() * n and Random.nextInt(n) where n is an integer?
1
vote
4answers
328 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 …
9
votes
7answers
754 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, …
9
votes
6answers
977 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 de …
2
votes
5answers
283 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 …
1
vote
1answer
772 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
394 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.next …
0
votes
2answers
146 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 …
