mpfr_libmpfr_cmp_ui_2exp Method |
Compare op1 and op2 * 2^e.
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_cmp_ui_2exp(
mpfr_t op1,
uint op2,
mpfr_exp_t e
)
Public Shared Function mpfr_cmp_ui_2exp (
op1 As mpfr_t,
op2 As UInteger,
e As mpfr_exp_t
) As Integer
public:
static int mpfr_cmp_ui_2exp(
mpfr_t^ op1,
unsigned int op2,
mpfr_exp_t e
)
static member mpfr_cmp_ui_2exp :
op1 : mpfr_t *
op2 : uint32 *
e : mpfr_exp_t -> int
Parameters
- op1
- Type: Math.Mpfr.Nativempfr_t
The first operand floating-point number. - op2
- Type: SystemUInt32
The second operand floating-point number. - e
- Type: Math.Mpfr.Nativempfr_exp_t
The exponent.
Return Value
Type:
Int32Return a positive value if
op1 >
op2 * 2^
e, zero if
op1 =
op2 * 2^
e, and a negative value if
op1 <
op2 * 2^
e.
Remarks
Examples
mpfr_t op1 = new mpfr_t();
mpfr_lib.mpfr_init2(op1, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(op1, 512, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(mpfr_lib.mpfr_cmp_ui_2exp(op1, 128, 2) == 0);
mpfr_lib.mpfr_clear(op1);
Dim op1 As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(op1, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_si(op1, 512, mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(mpfr_lib.mpfr_cmp_ui_2exp(op1, 128, 2) = 0)
mpfr_lib.mpfr_clear(op1)
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