rand(n,1)

18 ビュー (過去 30 日間)
Randall
Randall 2019 年 10 月 29 日
回答済み: Ajay Pattassery 2019 年 10 月 31 日
I gave an exam and figured I'd use rand in a few places to make sure there was no cheating. For question #2 on the exam, I specifically had 6 students solve the equation Ax=b with A=[0 -1 0 -1; -1 0 1 -2; 1 -1 0 1; 0 1 1 0]; and b=rand(4,1). I received exactly 3 different b-vectors from 3 pairs of students that don't talk with each other. In trying to understand the "chances" of this, I found
which says
"All the random number functions, rand, randn, randi, and randperm, draw values from a shared random number generator. Every time you start MATLAB®, the generator resets itself to the same state. Therefore, a command such as rand(2,2) returns the same result any time you execute it immediately following startup. Also, any script or function that calls the random number functions returns the same result whenever you restart."
I understand that when I open up and run matlab that it will reset the generator to the same state but is it obvious from this or other documentation that this should happen for pairs of people (with different releases and platforms)? A subsequent question had them use rand(3,3) and 6 different matrices were submitted.
  3 件のコメント
Walter Roberson
Walter Roberson 2019 年 10 月 29 日
Some older releases used different random number generators.
John D'Errico
John D'Errico 2019 年 10 月 29 日
Yes. There would be some release date beyond which it would be an issue.

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

回答 (1 件)

Ajay Pattassery
Ajay Pattassery 2019 年 10 月 31 日
It is difficult to reason why exactly three different pairs generated from the above information.
Atleast from MATLAB R2012a onwards when you open MATLAB, the result of the rand function is the same.

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by