Why do I get the same numbers in "randn" function?

16 ビュー (過去 30 日間)
Itamar
Itamar 2011 年 1 月 24 日
コメント済み: Steven Lord 2017 年 4 月 26 日
Every time I open MATLAB the first time I get the same values when I use randn function. This happens only after I first open MATLAB and not when the program is already open and I keep coming back for calculations.
  1 件のコメント
Todd Flanagan
Todd Flanagan 2011 年 1 月 24 日
Itamar says, "Thanks everyone for the answers. I learned something today"

サインインしてコメントする。

採用された回答

Paulo Silva
Paulo Silva 2011 年 1 月 24 日
You get the same numbers because there's a default seed (0) for the random number generator but you can change it like this:
RandStream.setDefaultStream(RandStream('mt19937ar','seed',sum(100*clock)))
If you want to see what changed do RandStream.getDefaultStream before and after changing the seed.
  5 件のコメント
afef
afef 2017 年 4 月 26 日
i tried this :
seed = sum(100*clock);
RandStream.setDefaultStream(RandStream('mt19937ar','seed',seed));
import java.util.Random;
import java.lang.System;
gen = Random(seed);
but i got error message "The class RandStream has no Constant property or Static method named 'setDefaultStream' " how to fix it?
Steven Lord
Steven Lord 2017 年 4 月 26 日
We started announcing that you should replace calls to the setDefaultStream method for the RandStream class with calls to setGlobalStream in release R2011a, started warning users in release R2012a, and started having setDefaultStream throw an error in release R2013a.

サインインしてコメントする。

その他の回答 (2 件)

Todd Flanagan
Todd Flanagan 2011 年 1 月 24 日
This is by design:
The sequence of numbers produced by randn is determined by the internal state of the uniform pseudorandom number generator that underlies rand, randi, and randn. randn uses one or more uniform values from that default stream to generate each normal value. Control the default stream using its properties and methods. See @RandStream for details about the default stream.
Resetting the default stream to the same fixed state allows computations to be repeated. Setting the stream to different states leads to unique computations, however, it does not improve any statistical properties. Since the random number generator is initialized to the same state every time MATLAB software starts up, rand, randn, and randi will generate the same sequence of numbers in each session until the state is changed.
On that page there is an example of how to change the default stream of numbers using clock:
RandStream.setDefaultStream ...
(RandStream('mt19937ar','seed',sum(100*clock)));
randn(1,5)
  1 件のコメント
Cris Luengo
Cris Luengo 2011 年 1 月 24 日
Todd beat me to it! :)

サインインしてコメントする。


Cris Luengo
Cris Luengo 2011 年 1 月 24 日
All you need to do is read the documentation for the function randn: http://www.mathworks.com/help/techdoc/ref/randn.html
>> "Since the random number generator is initialized to the same state every time MATLAB software starts up, rand, randn, and randi will generate the same sequence of numbers in each session until the state is changed."
In the examples section on that page you see:
>> "Replace the default stream at MATLAB startup, using a stream whose seed is based on clock, so that randn will return different values in different MATLAB sessions. It is usually not desirable to do this more than once per MATLAB session."
And then the following example code:
RandStream.setDefaultStream ...
(RandStream('mt19937ar','seed',sum(100*clock)));
Cheers, Cris.

カテゴリ

Help Center および File ExchangeTime Series Collections についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by