Thanks Andreas and Miguel
Very helpful
Cheers,
Isaac
在 2014年4月17日星期四UTC+2下午12时45分01秒,X Du写道:
>
>
> Hi All,
>
> Is there some comments to save or load a particular state when generating
> rand numbers?
> e.g. the code in Matlab:
>
> stream = RandStream.getGlobalStream;
> savedState = stream.State;
> u1 = rand(1,5)
> u1 =
> 0.8147 0.9058 0.1270 0.9134 0.6324
>
> stream.State = savedState;
> u2 = rand(1,5)
> u2 =
> 0.8147 0.9058 0.1270 0.9134 0.6324
>
> which can produce exactly the same random numbers.
>
>
> Thanks!
>
> Isaac
>
>
>
>