mpfr_libmpfr_get_q Method |
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void mpfr_get_q(
mpq_t rop,
mpfr_t op
)
Public Shared Sub mpfr_get_q (
rop As mpq_t,
op As mpfr_t
)
public:
static void mpfr_get_q(
mpq_t^ rop,
mpfr_t^ op
)
static member mpfr_get_q :
rop : mpq_t *
op : mpfr_t -> unit
Parameters
- rop
- Type: Math.Gmp.Nativempq_t
The result rational number. - op
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
Remarks
If op is NaN or an infinity, the erange flag is set, rop is set to 0, and 0 is returned.
Otherwise the conversion is always exact.
Examples
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_d(op, 10.6, mpfr_rnd_t.MPFR_RNDN) == 0);
mpq_t rop = new mpq_t();
gmp_lib.mpq_init(rop);
mpfr_lib.mpfr_get_q(rop, op);
Assert.IsTrue(rop.ToString() == "5967269506265907/562949953421312");
gmp_lib.mpq_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, 10.6, mpfr_rnd_t.MPFR_RNDN) = 0)
Dim rop As mpq_t = New mpq_t()
gmp_lib.mpq_init(rop)
mpfr_lib.mpfr_get_q(rop, op)
Assert.IsTrue(rop.ToString() = "5967269506265907/562949953421312")
gmp_lib.mpq_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