1
vote
4answers
221 views
Verify Knuth shuffle algorithm is as unbiased as possible
I'm implementing a Knuth shuffle for a C++ project I'm working on. I'm trying to get the most unbiased results from my shuffle (and I'm not an expert on (pseudo)random number generation). I just want …
0
votes
4answers
67 views
Improve “resolution” of random data
I've been working on an MPD front end in Ruby, with the ability to play a random album.
album = all[(rand*all.length).floor]
Where all is an array of the names of all albums in the library, chooses …
2
votes
5answers
160 views
c++: what exactly does &rand do?
This is an excerpt of some c++ code, that i'll have to explain in detail in some days:
std::vector<int> vct(8, 5);
std::generate(vct.begin(), vct.end(), &rand);
std::copy(vct.rbegin(), …
3
votes
4answers
137 views
Generating random numbers from -n to n in C
I want to generate random numbers from -n to n excluding 0. Can someone provide me the code in C? How to exclude 0?
0
votes
2answers
163 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
4answers
170 views
Simple Pseudo-Random Algorithm
I'm need a pseudo-random generator which takes a number as input and returns another number witch is reproducible and seems to be random.
Each input number should match to exactly one output number …
4
votes
7answers
251 views
Intel Math Kernel on windows, calling from c# for random number generation
Has anyone used the Intel Math Kernel library http://software.intel.com/en-us/intel-mkl/
I am thinking of using this for Random Number generation from a C# application as we need extreme performance …
1
vote
6answers
90 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
…
1
vote
6answers
153 views
How deterministic Are .Net GUIDs ?
Yesterday I asked Are GUIDs generated on Windows 2003 safe to use as session IDs? and the answer combined with combined with this article GUIDs are globally unique, but substrings of GUIDs aren't …
7
votes
11answers
574 views
Pseudo-random number generator
What is the best way to create the best pseudo-random number generator? (any language works)
5
votes
7answers
959 views
How random is JavaScript’s Math.random?
For 6 years I've had a random number generator page on my website. For a long time, it was the first or second result on Google for "random number generator" and has been used to decide dozens, if not …
1
vote
4answers
487 views
c# Mersenne Twister random integer generator implementation (SFMT) monte carlo simulation
So far I've been using the C# Mersenne Twister found here:
http://www.centerspace.net/resources.php
I just discovered SFMT which is supposed to be twice as fast here:
…
0
votes
2answers
63 views
Generating a random seed in PHP for consumption by Flash
I'm working on a project with remote Flash developers, and they have requested that when my PHP application sets up the HTML to load their Flash object, I pass in a seed that they can use to generate …
2
votes
3answers
167 views
Seeding random in django
In a view in django I use random.random(). How often do I have to call random.seed()?
One time for every request?
One time for every season?
One time while the webserver is running?
1
vote
3answers
142 views
Pseudorandom number generator for noise
I'm trying to make the Perlin noise algorithm described at http://freespace.virgin.net/hugo.elias/models/m_perlin.htm using Lua. However, it doesn't work properly since Lua doesn't support bitwise …
