Fixed values of randn at starting?
조회 수: 4 (최근 30일)
이전 댓글 표시
I am using 'randn' function but on every run values is keep changing,how can i fixed that?
댓글 수: 1
KSSV
2017년 3월 3일
The purpose of randn is to generate Normally distributed random numbers. It keeps changing for every call. Read the documentation.
답변 (1개)
Guillaume
2017년 3월 3일
If you want to have the same stream of random numbers every time you run your code, simply set the seed of the random generator to a constant value of your choice, using rng
>>rng(1234); %choose whatever number you want
>>randn(1, 2)
ans =
-0.947246643957371 0.540149747070348
>>randn(1, 2)
ans =
-0.216602140976276 1.18903197494834
>>%...later
>>rng(1234); %same seed as before, produces the same sequence
>>randn(1, 2)
ans =
-0.947246643957371 0.540149747070348
>>randn(1, 2)
ans =
-0.216602140976276 1.18903197494834
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Random Number Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!