mpfr_libmpfr_get_z_2exp Method |
Put the scaled significand of op (regarded as an integer, with the precision of op) into rop, and return the exponent exp (which may be outside the current exponent range) such that op = rop * 2^exp.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static mpfr_exp_t mpfr_get_z_2exp(
mpz_t rop,
mpfr_t op
)
Public Shared Function mpfr_get_z_2exp (
rop As mpz_t,
op As mpfr_t
) As mpfr_exp_t
public:
static mpfr_exp_t mpfr_get_z_2exp(
mpz_t^ rop,
mpfr_t^ op
)
static member mpfr_get_z_2exp :
rop : mpz_t *
op : mpfr_t -> mpfr_exp_t
Parameters
- rop
- Type: Math.Gmp.Nativempz_t
The result floating-point number. - op
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
Return Value
Type:
mpfr_exp_tReturn the exponent exp (which may be outside the current exponent range) such that
op =
rop * 2^exp.
Remarks
If op is zero, the minimal exponent emin is returned.
If op is NaN or an infinity, the erange flag is set, rop is set to 0, and the the minimal exponent emin is returned.
The returned exponent may be less than the minimal exponent emin of MPFR numbers in the current exponent range;
in case the exponent is not representable in the mpfr_exp_t type, the erange flag is set and the minimal value of the mpfr_exp_t type is returned.
Examples
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_d(op, 8, mpfr_rnd_t.MPFR_RNDN) == 0);
mpz_t rop = new mpz_t();
gmp_lib.mpz_init(rop);
mpfr_exp_t exp = mpfr_lib.mpfr_get_z_2exp(rop, op);
Assert.IsTrue(rop.ToString() == "9223372036854775808" && exp == -60);
gmp_lib.mpz_clear(rop);
mpfr_lib.mpfr_clear(op);
Dim op As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(op, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_d(op, 8, mpfr_rnd_t.MPFR_RNDN) = 0)
Dim rop As mpz_t = New mpz_t()
gmp_lib.mpz_init(rop)
Dim exp As mpfr_exp_t = mpfr_lib.mpfr_get_z_2exp(rop, op)
Assert.IsTrue(rop.ToString() = "9223372036854775808" AndAlso exp = -60)
gmp_lib.mpz_clear(rop)
mpfr_lib.mpfr_clear(op)
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