Click or drag to resize
mpfr_libmpfr_modf Method
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)
Syntax
public static int mpfr_modf(
	mpfr_t iop,
	mpfr_t fop,
	mpfr_t op,
	mpfr_rnd_t rnd
)

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: Int32
Return 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
// Create, initialize, and set a new floating-point number op to 10.4.
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);

// Create and initialize a new floating-point number iop.
mpfr_t iop = new mpfr_t();
mpfr_lib.mpfr_init2(iop, 64U);

// Create and initialize a new floating-point number fop.
mpfr_t fop = new mpfr_t();
mpfr_lib.mpfr_init2(fop, 64U);

// Set rop to log10(op).
Assert.IsTrue(mpfr_lib.mpfr_modf(iop, fop, op, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert the value of iop and fop.
Assert.IsTrue(iop.ToString() == "0.100000000000000000000e2");
Assert.IsTrue(fop.ToString() == "0.400000000000000355271e0");

// Release unmanaged memory allocated for iop, fop, and op.
mpfr_lib.mpfr_clears(iop, fop, op, null);
See Also