Click or drag to resize
mpfr_libmpfr_nrandom Method
Generate one random float according to a standard normal gaussian distribution (with mean zero and variance one).

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static int mpfr_nrandom(
	mpfr_t rop,
	gmp_randstate_t state,
	mpfr_rnd_t rnd
)

Parameters

rop
Type: Math.Mpfr.Nativempfr_t
The first result operand floating-point number.
state
Type: Math.Gmp.Nativegmp_randstate_t
The state of the random number generator.
rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.

Return Value

Type: Int32
The return value is the ternary value corresponding to rop. See GNU MPFR - Rounding Modes for details.
Remarks

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.

Examples
// 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);
See Also