Randomization measure in rand
8 次查看(过去 30 天)
显示 更早的评论
What is the randomization power in rand function.? For example UNIX drand48 can generate a randomization of 2^48 (~10^14).
0 个评论
采纳的回答
Walter Roberson
2013-10-18
2^53 different possibilities.
You should also be caring about how long the period is (that is, the time until the sequence repeats.) It is on the order of 2^11000 for the default randomization routine.
4 个评论
Walter Roberson
2013-10-18
编辑:Walter Roberson
2013-10-18
If your thought is to periodically have your program use rng('shuffle') in order to "improve the randomness", then interestingly it can be shown that this will reduce the randomness, because the times used as input to the shuffling will end up being correlated.
If you need "cryptographic strength" randomness, then you need to use special routines for that purpose that are "hardened" to reduce leakage of information about the internal state of the generator.
更多回答(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!