Resume from latest Randstream

조회 수: 3 (최근 30일)
Sebastian Thuné
Sebastian Thuné 2021년 4월 18일
댓글: Sebastian Thuné 2021년 4월 21일
Hi,
I am generating some data with matlab over azure. While generating data I use rand.
x = x_limits(1) + rand*(x_limits(2)-x_limits(1));
z = z_limits(1) + rand*(z_limits(2)-z_limits(1));
I usually generate a couple of MB of data (~200k samples) which I then use and perform tests on and then depending on the results from the test I generate more. However I have encountered a problem which is that when starting the script for generating data again It gives me the exact same as the previous generated data file. Even if I use:
rng('shuffle')
I still get a data file containing a lot of the same data. Is there a way in which I can save where my randstream finsihed in a lets say randState.mat file that I can later call when resuming data generator. Basically, picking up where the randstream last was used.
Thanks!

채택된 답변

Divija Aleti
Divija Aleti 2021년 4월 21일
Hi Sebastian,
Setting the seed of "rng" to 'shuffle' helps getting different sequence of random numbers after each call to rng, but these sequences are not necessarily independent.
To get independent sequences, consider specifying the "Substream" property of "RandStream" or using "RandStream.create". You can find details of these in the links given below:
For examples for creating multiple streams, refer to the following link:
Hope this helps!
Regards,
Divija
  댓글 수: 1
Sebastian Thuné
Sebastian Thuné 2021년 4월 21일
Thanks Divija!
My backup plan was to create different streams on x and z. I will give the Multiple streams a shot!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Random Number Generation에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by