[email protected] wrote:

> I would like to generate random numbers based on a random seed, for
> example what numpy.random does if the seed is not specified. But I
> would also like to print out the initial state, so I can replicate the
> random numbers.
> 
> Can I get a human readable or printable version of the initial state?
> Alternatively, what's a good way to  randomly generate an initial
> state?
> 
> I could draw an integer with randint and use it as seed. Is this the best
> way?
> 
> Josef

        import struct
        import os
        seed = struct.unpack ('I', os.urandom (4))[0]
        print seed

_______________________________________________
NumPy-Discussion mailing list
[email protected]
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to