Click or drag to resize
mpfr_lib.mpfr_erandom Method
Generate one random float according to an exponential distribution, with mean 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_erandom(
	mpfr_t rop,
	gmp_randstate_t state,
	mpfr_rnd_t rnd
)

Parameters

rop
Type: Math.Mpfr.Native.mpfr_t
The first result operand floating-point number.
state
Type: Math.Gmp.Native.gmp_randstate_t
The state of the random number generator.
rnd
Type: Math.Mpfr.Native.mpfr_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

Generate one random floating-point number according to an exponential distribution, with mean one. Other characteristics are identical to mpfr_nrandom(mpfr_t, gmp_randstate_t, mpfr_rnd_t).

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 exponential random floating-point number.
Assert.IsTrue(mpfr_lib.mpfr_erandom(rop, state, mpfr_rnd_t.MPFR_RNDN) < 0);

// Free all memory occupied by state and rop.
gmp_lib.gmp_randclear(state);
mpfr_lib.mpfr_clear(rop);
See Also