+ Reply to Thread
Results 1 to 6 of 6

Set Random seed

Hybrid View

  1. #1
    Registered User
    Join Date
    08-31-2011
    Location
    Tokyo
    MS-Off Ver
    Excel 2010
    Posts
    50

    Arrow Set Random seed

    Hello,

    I searched a lot in the web but I was not able to find any solutions.
    Using "Rnd", I can have a random number but I would like to be able to set the random seed.

    Would it be possible to do so ?

    For MATLAB user, I would like to do the following code in VBA :

    rand('state',seed_value) %seed value is the random seed (integer)
    %state or seed or twister can be used to set the seed
    Thank you in advance.
    Last edited by oro77; 09-09-2011 at 01:57 AM.

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Set Random seed

    Hello oro77,

    Randomize [number]

    The optional number argument is a Variant or any valid numeric expression.

    Randomize uses number to initialize the Rnd function's random-number generator, giving it a new seed value. If you omit number, the value returned by the system timer is used as the new seed value.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229

    Re: Set Random seed

    The VB statement Randomize will set the seed.

    http://mac2.microsoft.com/vb/1033/default.aspx
    _
    ...How to Cross-post politely...
    ..Wrap code by selecting the code and clicking the # or read this. Thank you.

  4. #4
    Registered User
    Join Date
    08-31-2011
    Location
    Tokyo
    MS-Off Ver
    Excel 2010
    Posts
    50

    Re: Set Random seed

    Thank you very much for your help
    I thought I checked this function but with no results, I will try again and get back to you.

  5. #5
    Registered User
    Join Date
    08-31-2011
    Location
    Tokyo
    MS-Off Ver
    Excel 2010
    Posts
    50

    Re: Set Random seed

    I tried again with this code

    Randomize(1)
    msgbox Rnd
    I put this code on a pushbutton, each time I push it, I have different number. I would like to have the same number because I have seed it.

  6. #6
    Registered User
    Join Date
    08-31-2011
    Location
    Tokyo
    MS-Off Ver
    Excel 2010
    Posts
    50

    Re: Set Random seed

    I understood how to use it.
    I have to put a negative number for Rnd first and then use Randomize :

    
    Dim i As Long
    Const Max As Long = 10
    Cells.ClearContents
    
    Rnd (-10)
    Randomize (1)
    
    For i= 1 To Max
    Cells(i, 1).Value = Rnd()
    Next

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1