Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a random number generator in JavaScript which I can initialize with a certain seed and gives a deterministic result (according to that seed). It should be capable of providing random integers within a certain range, however I can work with a random number generator that spits doubles, too (just like Math.random()).

Basically I'm looking for an equivalent to java.util.Random as known in the Java World for JavaScript.

Is there something like this already built into JavaScript? Is there some (maybe HTML5 related API) which specifies such a thing? Is there a library providing such a random number generator?

I'm implementing a genetic algorithm in JavaScript and I need to be able to harvest the same results for the same inputs (including seed) for research.

share|improve this question
Something like: davidbau.com/archives/2010/01/30/… – Prisoner Nov 30 '11 at 17:18
2  
@Danny, you can see from his question that he knows about Math - you cannot specify a seed though. – Prisoner Nov 30 '11 at 17:19
3  
@Danny: Math.random can't be seeded explicitly, and the OP is aware of it. A thorough read of the question should have told you that. ;-) – T.J. Crowder Nov 30 '11 at 17:19
@Prisoner Thanks, I missed that part. – Danny Nov 30 '11 at 17:21

2 Answers

up vote 2 down vote accepted

This might help you, I just found it on the internet. It's apparently a replacement for Math.random()

http://davidbau.com/encode/seedrandom.js

share|improve this answer
thanks, works as I wanted :-) – scravy Dec 1 '11 at 17:27

That would be fairly easy :-)

alt text

RFC 1149.5 specifies 4 as the standard IEEE-vetted random number

(found through stats.SE)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.