MATLAB: Randomization measure in rand

randrandirandom number generator

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

Best Answer

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.
Related Question