random number generation initial state

8 次查看(过去 30 天)
what is the possibility of rng('shuffle') to set the system to a specific state.
say I have a code
rng('shuffle')
A=random('unif',0,1,1,5);
say I run this code in 2 different computers. What is the possibility for these 2 guys give the same A?

回答(2 个)

Matt Tearle
Matt Tearle 2012-9-12
Digging through the code, rng(shuffle) calls RandStream.shuffleSeed. In there you can find a comment:
% Create a seed based on 1/100ths of a second, this repeats itself
% about every 497 days.
So, if we believe that, the chances of getting the same seed are about 1 in 3600*24*497*100 = 4.3 billion. Now that's assuming you're just running these at two randomly chosen times (on the same computer or not).
If you run the code on one computer, then go to another and run it there, that comment implies that there's no chance they'll be the same (unless you can run the two programs within 0.01 seconds of each other).
(Of course, the two computers' clocks are probably not perfectly in sync, either.)
  1 个评论
Matt Fig
Matt Fig 2012-9-12
编辑:Matt Fig 2012-9-12
My only question was whether or not Random uses RandStream or something else because Random is a Simulink function. I have very little experience with SimuLink so I don't know how it interacts with the MATLAB core.
EDIT I see there is a non-Simulink function with the same name in the Stats TB. This is probably what is referred to here.

请先登录,再进行评论。


Chuck
Chuck 2016-5-5
It is extremely unlikely if you are using rng("shuffle"). Practically, you should not get the exact same seed.

类别

Help CenterFile Exchange 中查找有关 Sources 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by