rand(n,1)

17 次查看(过去 30 天)
Randall
Randall 2019-10-29
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 CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by