mpfr_libmpfr_floor Method |
Set rop to op rounded to the next lower or equal representable integer.
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_floor(
mpfr_t rop,
mpfr_t op
)
Public Shared Function mpfr_floor (
rop As mpfr_t,
op As mpfr_t
) As Integer
public:
static int mpfr_floor(
mpfr_t^ rop,
mpfr_t^ op
)
static member mpfr_floor :
rop : mpfr_t *
op : mpfr_t -> int
Parameters
- rop
- Type: Math.Mpfr.Nativempfr_t
The result floating-point number. - op
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
Return Value
Type:
Int32The return value is zero when the result is exact, positive when it is greater than the original value of
op, and negative when it is smaller. More precisely, the returned value is 0 when
op is an integer representable in
rop, 1 or -1 when
op is an integer that is not representable in
rop, 2 or -2 when
op is not an integer.
Remarks
When op is a zero or an infinity, set rop to the same value (with the same sign).
When op is NaN, the NaN flag is set as usual.
In the other cases, the inexact flag is set when rop differs from op, following the ISO C99 rule for the rint function.
If you want the behavior to be more like IEEE 754 / ISO TS 18661-1, i.e., the usual behavior where the round-to-integer function is regarded as any other
mathematical function, you should use one the mpfr_rint_* functions instead.
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 rop = new mpfr_t();
mpfr_lib.mpfr_init2(rop, 64U);
Assert.IsTrue(mpfr_lib.mpfr_floor(rop, op) == -2);
Assert.IsTrue(mpfr_lib.mpfr_get_d(rop, mpfr_rnd_t.MPFR_RNDN) == 10.0);
mpfr_lib.mpfr_clears(rop, 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 rop As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(rop, 64U)
Assert.IsTrue(mpfr_lib.mpfr_floor(rop, op) = -2)
Assert.IsTrue(mpfr_lib.mpfr_get_d(rop, mpfr_rnd_t.MPFR_RNDN) = 10.0)
mpfr_lib.mpfr_clears(rop, 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