2
votes
5answers
149 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::c …
1
vote
3answers
166 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 gener …
3
votes
4answers
132 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
137 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.
Her …
1
vote
4answers
147 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 exactl …
1
vote
6answers
74 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 rando …
4
votes
7answers
221 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 …
1
vote
6answers
144 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 …
7
votes
11answers
559 views
Pseudo-random number generator
What is the best way to create the best pseudo-random number generator? (any language works)
0
votes
2answers
52 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 …
5
votes
7answers
856 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 d …
1
vote
4answers
425 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:
http://www …
2
votes
3answers
150 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
136 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 …
2
votes
4answers
148 views
Evenly distributed random numbers relatively prime to 2
A specific example
I need to generate a random number between 0 and 2, inclusive. (or choose randomly between -1, 0, and 1).
The naive approach would be to do something like rand …
