I'm not satisfied with Math.random() from javascript. I would like to create a function that generates random numbers. What I need is that if I generate 100.000 numbers from 1 to 100, the frequencies that the numbers appear must be as close as possible. The minimum frequency a number appears to be as close as possible to the maximum frequency. Could you give me some ideas?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You could probably implement MT19937 in JS, which is a quite capable algorithm suitable for a wide range of applications (not cryptography, though!). |
|||
|
|
|
start with wikipedia, if that doesn't give you any clues I'd recommend Donald Knuths TAOCP Volume 2 - Seminumerical Algorithms, chapter 3 |
|||
|
|