Random number generator (included): Difference between revisions

Content added Content deleted
(Free Pascal)
Line 434:
If this package is seeded twice with the same seed, then accessed in the same way, it will produce the same results in both cases.
<lang PL/SQL>DBMS_RANDOM.RANDOM --produces integers in [-2^^31, 2^^31).
DBMS_RANDOM.VALUE --produces numbers in [0,1) with 38 digits of precision.</lang>
DBMS_RANDOM.NORMAL --produces normal distributed numbers with a mean of 0 and a variance of 1</lang>
 
===DBMS_CRYPTO===