3
votes
7answers
187 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 …
0
votes
2answers
74 views
Random number function is misfiring
I have a very simple iPhone app that requires a random integer from 1-100.
I have a button that calls the random number function then displays it.
-(IBAction)buttonReleased;
{
…
58
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 …
4
votes
14answers
373 views
What is a good random number generator for a game?
What is a good random number generator to use for a game in C++?
My considerations are:
Lots of random numbers are needed, so speed is good.
Players will always complain about r …
2
votes
3answers
107 views
Randomly generated hexadecimal number in C#
How can I generate a random hexadecimal number with a length of my choice using C#?
1
vote
9answers
215 views
Fast generation of random numbers that appear random…
I am looking for an efficient way to generate numbers that a human would perceive as being random. Basically, I think of this as avoiding long sequences of 0 or 1 bits. I expect …
0
votes
9answers
141 views
PHP: Best random numbers
Hello!
I heard that PHP's rand() function doesn't give good random numbers. So I started to use mt_rand() which is said to give better results. But how good are these results? Are …
2
votes
3answers
83 views
What is the easiest way to generate quasi random numbers in C#?
All I want is a pragmatic random number generator in C# so I can say e.g.
int dummyAge = MathHelpers.GetRandomNumber(20,70);
and have it seem quasi random, e.g. to generate dum …
5
votes
4answers
102 views
Random number generation without using bit operations
I'm writing a vertex shader at the moment, and I need some random numbers. Vertex shader hardware doesn't have logical/bit operations, so I cannot implement any of the standard ran …
0
votes
2answers
46 views
SQL Random number not working
declare @fieldForceCounter as int
declare @SaleDate as dateTime
declare @RandomNoSeed as decimal
set @fieldForceCounter = 1
set @SaleDate = '1 Jan 2009'
set @RandomNoSeed = 0.0
W …
3
votes
3answers
137 views
Generating non-uniform random numbers
Can you tell me any ways to generate non-uniform random numbers?
I am using Java but the code examples can be in whatever you want.
One way is to create a skewed distribution by a …
0
votes
3answers
44 views
Relationship between MSVC++ rand() and C# System.Random
How can I make it so the same sequence of random numbers come out of an MSVC++ program and a C# .NET program?
Is it possible? Is there any relationship between MSVC++ rand() and …
0
votes
5answers
101 views
How to get mysql random integer range?
I am trying to generate a random integer for each row I select between 1 and 60 as timer.
SELECT downloads.date, products.*, (FLOOR(1 + RAND() * 60)) AS timer
I have searched an …
0
votes
3answers
140 views
What’s wrong with my random number generator?
I'm just diving into some C++ and I decided to make a random number generator (how random the number is, it really doesn't matter). Most of the code is copied off then net but my n …
31
votes
19answers
2k views
Could a truly random number be generated using pings?
Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?
The question posed came about during a 2nd Year Comp Science lecture while discussi …
