0
votes
4answers
112 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
votes
2answers
113 views
PHP Random Numbers
i need to print out numbers 1-100 in a random order. the print statement should be:
echo 'h{'.$num.'}';
what is the shortest code to do this?
1
vote
7answers
175 views
Need a fast random generator for c++
Hi guys.
I'm trying to do some opt-3 swapping on my TSP generator for euclidian distances, and since I in many cases have more than ~500 nodes, I need to randomly select at least 1 of the 3 nodes …
0
votes
2answers
150 views
boost random number library, use same random number generator for different variate generators
It seems that one can use the following code to produce random numbers from a particular Normal distribution:
float mean = 0, variance = 1;
boost::mt19937 randgen(static_cast<unsigned …
0
votes
2answers
149 views
Why would rand() return a negative value when min and max values are positive?
Hi,
I have a simple piece of PHP code which requires a random number to be created. However, even though the input is always positive, it sometimes returns a negative output.
Here's my debug code:
…
1
vote
6answers
83 views
How different do random seeds need to be?
Consider code like this (Python):
import random
for i in [1, 2, 3, 4]:
random.seed(i)
randNumbers = [random.rand() for i in range(100)] # initialize a list with 100 random numbers
…
2
votes
6answers
383 views
TSQL Generate 5 character length string, all digits [0-9] that doesn’t already exist in database…
What's the best way to do this?
I need to generate a 5 digit length string where all the characters are numeric. However, I need to be able to do this 'x' amount of times (user variable) and store …
4
votes
12answers
449 views
In PHP, how do I generate a big pseudo-random number?
I'm looking for a way to generate a big random number with PHP, something like:
mt_rand($lower, $upper);
The closer I've seen is gmp_random() however it doesn't allow me to specify the lower and …
7
votes
11answers
337 views
A Good and SIMPLE Measure of Randomness
What is the best algorithm to take a long sequence of integers (say 100,000 of them) and return a measurement of how random the sequence is?
The function should return a single result, say 0 if the …
0
votes
9answers
371 views
Non-repeating pseudo random number stream with ‘clumping’
I'm looking for a method to generate a pseudorandom stream with a somewhat odd property - I want clumps of nearby numbers.
The tricky part is, I can only keep a limited amount of state no matter …
1
vote
4answers
70 views
How do you seed a PRNG with two seeds?
For a game that I'm making, where solar systems have an x and y coordinates, I'd like to use the coordinates to randomly generate the features for that solar system. The easiest way to do this seems …
4
votes
4answers
309 views
Find out what a random number generator was seeded with in C++
I've got an unmanaged c++ console application in which I'm using srand() and rand(). I don't need this to solve a particular problem, but was curious: is the original seed passed to srand() stored …
1
vote
2answers
91 views
replace rand() with openssl_random_pseudo_bytes()
I need a replacement for PHP's rand() function that uses a cryptographically strong random number generator.
The openssl_random_pseudo_bytes() function gets you access to the strong random number …
0
votes
3answers
435 views
Unique random number sequence using qrand() and qsrand()
I want to generate unique random number sequence in QT, Using QDateTime::currentDateTime().toTime_t() as seed value, will qrand() generate unique random numbers?
4
votes
6answers
299 views
Problem with rand() in C [closed]
Possible Duplicate:
why do i always get the same sequence of random numbers with rand() ?
This is my file so far:
#include <stdio.h>
int main(void) {
int y;
y = …
