0
votes
8answers
130 views
How can I fairly choose an item from a list?
Let's say that I have a list of prizes:
PrizeA
PrizeB
PrizeC
And, for each of them, I want to draw a winner from a list of my attendees.
Give that my attendee list is as follows:
user1, user2, …
1
vote
4answers
226 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
68 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
162 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
141 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?
4
votes
7answers
259 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 …
0
votes
2answers
168 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:
…
7
votes
11answers
584 views
Pseudo-random number generator
What is the best way to create the best pseudo-random number generator? (any language works)
1
vote
6answers
94 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
4answers
173 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 …
0
votes
2answers
65 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 …
1
vote
6answers
160 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 …
1
vote
3answers
144 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 …
1
vote
4answers
494 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:
…
2
votes
3answers
172 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?
