mpfr_libmpfr_get_flt Method |
Convert op to a float, using the rounding mode rnd.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static float mpfr_get_flt(
mpfr_t op,
mpfr_rnd_t rnd
)
Public Shared Function mpfr_get_flt (
op As mpfr_t,
rnd As mpfr_rnd_t
) As Single
public:
static float mpfr_get_flt(
mpfr_t^ op,
mpfr_rnd_t rnd
)
static member mpfr_get_flt :
op : mpfr_t *
rnd : mpfr_rnd_t -> float32
Parameters
- op
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number. - rnd
- Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.
Return Value
Type:
SingleThe converted floating-point number.
Remarks
If op is NaN, some fixed NaN (either quiet or signaling) or the result of 0.0/0.0 is returned.
If op is ±Inf, an infinity of the same sign or the result of ±1.0/0.0 is returned.
If op is zero, the function returns a zero, trying to preserve its sign, if possible.
Examples
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_d(op, -123.0, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(mpfr_lib.mpfr_get_flt(op, mpfr_rnd_t.MPFR_RNDN) == -123.0);
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, -123.0, mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(mpfr_lib.mpfr_get_flt(op, mpfr_rnd_t.MPFR_RNDN) = -123.0)
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