mpfr_libmpfr_nrandom Method |
Namespace: Math.Mpfr.Native
The floating-point number rop can be seen as if a random real number were generated according to the standard normal gaussian distribution and then rounded in the direction rnd.
The gmp_randstate_t argument should be created using the GMP gmp_randinit function (see the GMP manual).
Note: the note for mpfr_urandomb holds too. In addition, the exponent range and the rounding mode might have a side effect on the next random state.
Note: mpfr_nrandom(mpfr_t, gmp_randstate_t, mpfr_rnd_t) is much more efficient than mpfr_grandom(mpfr_t, mpfr_t, gmp_randstate_t, mpfr_rnd_t), especially for large precision. Thus mpfr_grandom(mpfr_t, mpfr_t, gmp_randstate_t, mpfr_rnd_t) is marked as deprecated and will be removed in a future release.
// Create, initialize, and seed a new random number generator. gmp_randstate_t state = new gmp_randstate_t(); gmp_lib.gmp_randinit_mt(state); gmp_lib.gmp_randseed_ui(state, 100000U); // Create and initialize a new floating-point number rop. mpfr_t rop = new mpfr_t(); mpfr_lib.mpfr_init2(rop, 64U); // Generate one Gaussian random floating-point number. Assert.IsTrue(mpfr_lib.mpfr_nrandom(rop, state, mpfr_rnd_t.MPFR_RNDN) == 10); // Free all memory occupied by state and rop. gmp_lib.gmp_randclear(state); mpfr_lib.mpfr_clear(rop);