Jump to content

Seed numbers?


Recommended Posts

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 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

 

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

  • 2 weeks later...

> 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. 

Link to comment
Share on other sites

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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

Terms of Use Privacy Policy