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 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