Posted September 26, 20186 yr Hello I'm new here. I'm on the demo and doing fine but for the life of me I can't figure out what the n integer does after :seed? I know seed fixes a random function so it is repeatable but what does that number do? I tried changing it in Tutorial 5 but I can't make sense of it! Thanks Andy
September 27, 20186 yr Hi Andy, the seed is just a number you choose. Because it stop the random engine in a state, it allow to recover some values you generate randomly. Very useful for example for creating a random theme and call it back after or for further variations. What the seed number is to initialise the random engine in a state attached to this number. SB.
September 27, 20186 yr Author Hi Stephane Ah I think I see, so it is an arbitary number that is an identifier....is that correct? Thank you Andy
October 13, 20186 yr > the random state number. Seed values are only relevant for functions that do some random operations. In layman's terms, think of rolling a dice. You want to ensure that the dice always rolls the same number, and for that purpose, you put some glue on one of its sides. The seed number effectively controls on which side of your dice you put the glue. It is not the same as the number that is the result, but controls which number will be the result. Now think of having some more complex algorithm than just a dice, where you have a similar mechanism to control what the output should be and that way fixing the output to a static value that can be re-computed multiple times.
October 13, 20186 yr Author Great explanation Torsten thanks....and the value of the number attached to the "glued side" is arbitrary? It's an index to the glued side but as such can be any chosen value?
October 13, 20186 yr > the value of the number attached to the "glued side" is arbitrary No, it is not, it depends on the implementation of the random generator used. However, this is far from being intuitive to understand, and beyond that, for several functions, the seed controls multiple random generators, where basically the seed for their seed is then computed randomly. So, for practical uses, you can consider the choice of seed values random. Just for background, in a simple random number generator, the seed can be used in an integer division where the resulting random value is the modulus (see https://en.wikipedia.org/wiki/Lehmer_random_number_generator). So, there is no indexing... Best, Torsten
Create an account or sign in to comment