Randomization measure in rand

What is the randomization power in rand function.? For example UNIX drand48 can generate a randomization of 2^48 (~10^14).

 采纳的回答

Walter Roberson
Walter Roberson 2013-10-18

0 个投票

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 个评论

Thank you for the quick reply. Does using the rng('shuffle') improves the randomness?
rng('shuffle') just resets the seed of the RNG based on the current time on your machine. Doesn't do anything to the algorithm itself.
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.
Thank you. I will consider shifting to a more robust random number generator.

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Random Number Generation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by