mpfr_libmpfr_get_d_2exp Method (ptrInt32, mpfr_t, mpfr_rnd_t) |
Return d and set exp such that 0.5 ≤ abs(d) <1 and d * 2^exp = op rounded to double precision, using the given rounding mode.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static double mpfr_get_d_2exp(
ptr<int> exp,
mpfr_t op,
mpfr_rnd_t rnd
)
Public Shared Function mpfr_get_d_2exp (
exp As ptr(Of Integer),
op As mpfr_t,
rnd As mpfr_rnd_t
) As Double
public:
static double mpfr_get_d_2exp(
ptr<int>^ exp,
mpfr_t^ op,
mpfr_rnd_t rnd
)
static member mpfr_get_d_2exp :
exp : ptr<int> *
op : mpfr_t *
rnd : mpfr_rnd_t -> float
Parameters
- exp
- Type: Math.Gmp.NativeptrInt32
Pointer to returned exponent. - op
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number. - rnd
- Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.
Return Value
Type:
DoubleThe converted floating-point number.
Remarks
If op is zero, then a zero of the same sign (or an unsigned zero, if the implementation does
not have signed zeros) is returned, and exp is set to 0.
If op is NaN or an infinity, then the corresponding double precision value is returned,
and exp is undefined.
Examples
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_d(op, -8.0, mpfr_rnd_t.MPFR_RNDN) == 0);
ptr<int> exp = new ptr<int>(0);
Assert.IsTrue(mpfr_lib.mpfr_get_d_2exp(exp, op, mpfr_rnd_t.MPFR_RNDN) == -0.5);
Assert.IsTrue(exp.Value == 4);
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.0, mpfr_rnd_t.MPFR_RNDN) = 0)
Dim exp As ptr(Of int) = New ptr(Of int)(0)
Assert.IsTrue(mpfr_lib.mpfr_get_d_2exp(exp, op, mpfr_rnd_t.MPFR_RNDN) = -0.5)
Assert.IsTrue(exp.Value = 4)
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