Tagged Questions

7
votes
11answers
575 views

Pseudo-random number generator

What is the best way to create the best pseudo-random number generator? (any language works)
5
votes
7answers
961 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 …
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 …
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?
3
votes
7answers
402 views

Deterministic Random Number Streams in C++ STL

I want to supply a number, and then receive a set of random numbers. However, I want those numbers to be the same regardless of which computer I run it on (assuming I supply the same seed). …
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(), …
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?
2
votes
4answers
154 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() mod 3 where …
2
votes
4answers
451 views

Random number generator that produces a power-law distribution?

I'm writing some tests for a C++ command line Linux app. I'd like to generate a bunch of integers with a power-law/long-tail distribution. Meaning, I get a some numbers very frequently but most of …
2
votes
5answers
196 views

Convert sequence of numbers to random-looking IDs?

I'm working on an application where I need to generate unique, non-sequential IDs. One of the constraints I have is that they must consist of 3 digits followed by 2 letters (only about 600k IDs). …
2
votes
6answers
304 views

Random numbers

While thinking about this question and conversing with the participants, the idea came up that shuffling a finite set of clearly biased random numbers makes them random because you don't know the …
1
vote
4answers
222 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 …
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
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 …
1
vote
6answers
154 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 2 next
15 30 50 per page