Set simultaneously iop to the integral part of op and fop to the fractional part of op, rounded in the direction rnd with the corresponding precision of iop and fop.
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_modf(
mpfr_t iop,
mpfr_t fop,
mpfr_t op,
mpfr_rnd_t rnd
)
Public Shared Function mpfr_modf (
iop As mpfr_t,
fop As mpfr_t,
op As mpfr_t,
rnd As mpfr_rnd_t
) As Integer
public:
static int mpfr_modf(
mpfr_t^ iop,
mpfr_t^ fop,
mpfr_t^ op,
mpfr_rnd_t rnd
)
static member mpfr_modf :
iop : mpfr_t *
fop : mpfr_t *
op : mpfr_t *
rnd : mpfr_rnd_t -> int
Parameters
- iop
- Type: Math.Mpfr.Nativempfr_t
The result integral part. - fop
- Type: Math.Mpfr.Nativempfr_t
The result frational part. - op
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number. - rnd
- Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.
Return Value
Type:
Int32Return 0 iff both results are exact (see
mpfr_sin_cos for a more detailed description of the return value.
Remarks
Equivalent to mpfr_trunc(iop, op, rnd)
and mpfr_frac(fop, op, rnd).
The variables iop and fop must be different.
Examples
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_d(op, 10.4, mpfr_rnd_t.MPFR_RNDN) == 0);
mpfr_t iop = new mpfr_t();
mpfr_lib.mpfr_init2(iop, 64U);
mpfr_t fop = new mpfr_t();
mpfr_lib.mpfr_init2(fop, 64U);
Assert.IsTrue(mpfr_lib.mpfr_modf(iop, fop, op, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(iop.ToString() == "0.100000000000000000000e2");
Assert.IsTrue(fop.ToString() == "0.400000000000000355271e0");
mpfr_lib.mpfr_clears(iop, fop, op, null);
Dim op As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(op, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_d(op, 10.4, mpfr_rnd_t.MPFR_RNDN) = 0)
Dim iop As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(iop, 64U)
Dim fop As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(fop, 64U)
Assert.IsTrue(mpfr_lib.mpfr_modf(iop, fop, op, mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(iop.ToString() = "0.100000000000000000000e2")
Assert.IsTrue(fop.ToString() = "0.400000000000000355271e0")
mpfr_lib.mpfr_clears(iop, fop, op, Nothing)
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