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)
Syntaxpublic static int mpfr_erandom(
mpfr_t rop,
gmp_randstate_t state,
mpfr_rnd_t rnd
)
Public Shared Function mpfr_erandom (
rop As mpfr_t,
state As gmp_randstate_t,
rnd As mpfr_rnd_t
) As Integer
public:
static int mpfr_erandom(
mpfr_t^ rop,
gmp_randstate_t^ state,
mpfr_rnd_t rnd
)
static member mpfr_erandom :
rop : mpfr_t *
state : gmp_randstate_t *
rnd : mpfr_rnd_t -> int
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:
Int32The return value is the
ternary value corresponding to
rop. See
GNU MPFR - Rounding Modes for details.
Remarks
Examples
gmp_randstate_t state = new gmp_randstate_t();
gmp_lib.gmp_randinit_mt(state);
gmp_lib.gmp_randseed_ui(state, 100000U);
mpfr_t rop = new mpfr_t();
mpfr_lib.mpfr_init2(rop, 64U);
Assert.IsTrue(mpfr_lib.mpfr_erandom(rop, state, mpfr_rnd_t.MPFR_RNDN) < 0);
gmp_lib.gmp_randclear(state);
mpfr_lib.mpfr_clear(rop);
Dim state As gmp_randstate_t = New gmp_randstate_t()
gmp_lib.gmp_randinit_mt(state)
gmp_lib.gmp_randseed_ui(state, 100000U)
Dim rop As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(rop, 64U)
Assert.IsTrue(mpfr_lib.mpfr_erandom(rop, state, mpfr_rnd_t.MPFR_RNDN) < 0)
gmp_lib.gmp_randclear(state)
mpfr_lib.mpfr_clear(rop)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also