Return a positive value if op > 0, zero if op = 0, and a negative value if op < 0.
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_sgn(
mpfr_t op
)
Public Shared Function mpfr_sgn (
op As mpfr_t
) As Integer
public:
static int mpfr_sgn(
mpfr_t^ op
)
static member mpfr_sgn :
op : mpfr_t -> int
Parameters
- op
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
Return Value
Type:
Int32Return a positive value if
op > 0, zero if
op = 0, and a negative value if
op < 0.
Remarks
If the operand is NaN, set the erange flag and return zero.
This is equivalent to mpfr_cmp_ui(op, 0), but more efficient.
Examples
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_ui(op, 200U, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(mpfr_lib.mpfr_sgn(op) > 0);
mpfr_lib.mpfr_clear(op);
Dim op As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(op, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_ui(op, 200U, mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(mpfr_lib.mpfr_sgn(op) > 0)
mpfr_lib.mpfr_clear(op)
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