2
votes
6answers
44 views
Good libraries for generating non uniform pseudo-random numbers
Hi,
I'm looking for known libraries that are able to generate non uniformly distributed random numbers for C, C++ and Java.
Thanks
1
vote
4answers
55 views
Pseudorandom Sequence Generator not just a number generator.
I need an algorithm that pretty much will turn a unix timestamp into a suitably random number, so that if I "play back" the timestamps I get the same random numbers.
And here's wh …
2
votes
2answers
158 views
How can I generate random numbers in Python?
Are there any built-in libraries in Python or Numpy to generate random numbers based on various common distributions, such as:
Normal
Poisson
Exponential
Bernoulli
And various …
1
vote
7answers
140 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 …
3
votes
6answers
218 views
C# Normal Random Number
I would like to create a function that accepts Double mean, Double deviation and returns a random number with a normal distribution.
Example: if I pass in 5.00 as the mean and 2 …
0
votes
5answers
42 views
SqlServer Rand() question
I am writing a procedure where each call it needs to get a single random number. This procedure is called from our .net web service.
I tried implementing this using rand(). Ho …
2
votes
9answers
276 views
C# Random Number
I am working on a project in which I need to generate 8 random numbers. I am having an issue with the random number part being very time consuming for some reason. What I mean by 8 …
0
votes
2answers
57 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<u …
-1
votes
2answers
88 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?
66
votes
37answers
2k views
Need for predictable random generator
I'm a web-game developer and I got a problem with random numbers. Let's say that a player has 20% chance to get a critical hit with his sword. That means, 1 out of 5 hits should be …
0
votes
2answers
116 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 …
0
votes
7answers
552 views
Generating random number between [-1, 1] in C?
I have seen many questions on SO about this particular subject but none of them has any answer for me, so I thought of asking this question.
I wanted to generate a random number b …
3
votes
5answers
132 views
How to generate random numbers in microcontrollers efficiently?
Any general guidelines? Or particular fast method?
Thanks in advance.
0
votes
1answer
29 views
Randoms numbers on iPhone
Hi,
What is better? I have the prioritized in the order of "goodness", am I correct?
arc4random
randmom
rand
1 - best, 3 - worst
I need a really good randmon number gen for a …
4
votes
11answers
227 views
Crappy Random Number Generator
This may sound like an odd question, but where can I find a random number generator that works in C or C++ that is not very good?
Context: I'm creating some tree graph plotting so …
