Set r to the value of x - n * y, rounded according to the direction rnd, where n is the integer quotient of x divided by y, rounded toward zero.
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_fmod(
mpfr_t r,
mpfr_t x,
mpfr_t y,
mpfr_rnd_t rnd
)
Public Shared Function mpfr_fmod (
r As mpfr_t,
x As mpfr_t,
y As mpfr_t,
rnd As mpfr_rnd_t
) As Integer
public:
static int mpfr_fmod(
mpfr_t^ r,
mpfr_t^ x,
mpfr_t^ y,
mpfr_rnd_t rnd
)
static member mpfr_fmod :
r : mpfr_t *
x : mpfr_t *
y : mpfr_t *
rnd : mpfr_rnd_t -> int
Parameters
- r
- Type: Math.Mpfr.Nativempfr_t
The result remainder floating-point number. - x
- Type: Math.Mpfr.Nativempfr_t
The first operand floating-point number. - y
- Type: Math.Mpfr.Nativempfr_t
The second operand floating-point number. - rnd
- Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.
Return Value
Type:
Int32The return value is the ternary value corresponding to
r. See
GNU MPFR - Rounding Modes for details.
Remarks
Special values are handled as described in Section F.9.7.1 of the ISO C99 standard:
If x is infinite or y is zero, r is NaN.
If y is infinite and x is finite, r is x rounded to the precision of r.
If r is zero, it has the sign of x.
Examples
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(x, 100, mpfr_rnd_t.MPFR_RNDN) == 0);
mpfr_t y = new mpfr_t();
mpfr_lib.mpfr_init2(y, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(y, 3, mpfr_rnd_t.MPFR_RNDN) == 0);
mpfr_t r = new mpfr_t();
mpfr_lib.mpfr_init2(r, 64U);
Assert.IsTrue(mpfr_lib.mpfr_fmod(r, x, y, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(r.ToString() == "0.100000000000000000000e1");
mpfr_lib.mpfr_clears(r, x, y, null);
Dim x As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(x, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_si(x, 100, mpfr_rnd_t.MPFR_RNDN) = 0)
Dim y As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(y, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_si(y, 3, mpfr_rnd_t.MPFR_RNDN) = 0)
Dim r As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(r, 64U)
Assert.IsTrue(mpfr_lib.mpfr_fmod(r, x, y, mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(r.ToString() = "0.100000000000000000000e1")
mpfr_lib.mpfr_clears(r, x, y, 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