Does using rng guarantee having exactly the same result in each simulation?
古いコメントを表示
I am using rng to be able to reproduce data in each simulation. But I noticed there is a slightly difference for the result in each simulation (around 1%). Is it normal?
7 件のコメント
Walter Roberson
2020 年 4 月 25 日
I have a hypnosis that it just might be the case that sum() of a large vector might not always be the same. For sufficiently large arrays it would be handed to a high performance library that breaks the problem into sections and uses different threads to calculate subtotals for the different sections, and then combines the subtotals. But hypothetically the subtotals might get added in the order that the threads finish, which is not deterministic. However it is also possible that the software waits for all the threads to finish, so this is a hypothesis not certainty.
Walter Roberson
2020 年 4 月 25 日
I think in theory prod() could have the same effect; the round-off for (A.*B).*C is not necessarily the same as for A.*(B.*C)
Zeynab Mousavikhamene
2020 年 4 月 25 日
編集済み: Zeynab Mousavikhamene
2020 年 4 月 25 日
Stephen23
2020 年 4 月 25 日
"Would resetting rng in a for loop be the reason?"
Yes.
Seeding rng with different values means it will generate different outputs. That is the point of it.
"Does using rng guarantee having exactly the same result in each simulation?"
If you call it with exactly the same seed value and generator, then yes.
But as you are using it with a different seed on each loop iteration, then no.
Walter Roberson
2020 年 4 月 25 日
If you call it with exactly the same seed value and generator, then yes.
I am not convinced that is always true when MATLAB automatically invokes the multithreaded high-performance libraries. It might be the case that those libraries take care to handle partial results in a consistent order, but I do not know if they do.
Zeynab Mousavikhamene
2020 年 4 月 25 日
Zeynab Mousavikhamene
2020 年 4 月 25 日
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Discrete Multiresolution Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!