Explain this one line of code

조회 수: 13 (최근 30일)
Aftab Ahmed Khan
Aftab Ahmed Khan 2014년 7월 7일
댓글: Star Strider 2014년 7월 7일
Hi,
Can anyone explain to me this one line, what actually this one line do ?
rand('state',sum(100*clock)); % resetting of the random table

채택된 답변

Star Strider
Star Strider 2014년 7월 7일
It’s an obsolete way of resetting the seed of the random number generator. See the documentation on Replace Discouraged Syntaxes of rand and randn for details.
  댓글 수: 2
Aftab Ahmed Khan
Aftab Ahmed Khan 2014년 7월 7일
Hi Strider,
In short, does it mean that everytime i use the rand function, it will generate a different set of numbers? Am i right ?
Star Strider
Star Strider 2014년 7월 7일
Yes. It’s set up in that statement to set the seed based on the current time (the sum of the elements in the six-element date vector returned by clock).

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

추가 답변 (2개)

Ben11
Ben11 2014년 7월 7일
I think this ensures that random numbers generated from different calls are all different since you use the current date/time in your call. You might want to take a look at this:
in which The Mathworks discourages using this syntax and proposes alternatives.

Shashank Prasanna
Shashank Prasanna 2014년 7월 7일
편집: Shashank Prasanna 2014년 7월 7일
Aftab, Random number generators are really pseudorandom (deterministic). This means for a given "seed" you can consistently regenerate the same sequence. This is useful if you want to re-run your experiment or perform multiple experiments on the same random stream.
In short, yes, using clock to reset the seed with generate a different stream each time since the clock is different each moment. However the recommended way to change the seed is to use the RNG function:
rng('shuffle')
Also all the link provided by SS and Ben are relevant.

카테고리

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