Click or drag to resize
mpfr_libmpfr_abs Method
Set rop to the absolute value of op rounded in the direction rnd.

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_abs(
	mpfr_t rop,
	mpfr_t op,
	mpfr_rnd_t rnd
)

Parameters

rop
Type: Math.Mpfr.Nativempfr_t
The result floating-point number.
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 zero, a positive, or a negative value if rop is respectively equal to, greater than, or lower than the exact result. See GNU MPFR - Rounding Modes for details.
Remarks

Just changes or adjusts the sign if rop and op are the same variable, otherwise a rounding might occur if the precision of rop is less than that of op.

The sign rule also applies to NaN in order to mimic the IEEE 754 negate and abs operations, i.e., for mpfr_neg(mpfr_t, mpfr_t, mpfr_rnd_t), the sign is reversed, and for mpfr_abs(mpfr_t, mpfr_t, mpfr_rnd_t), the sign is set to positive. But contrary to IEEE 754, the NaN flag is set as usual.

Examples
// Create, initialize, and set a new floating-point number op to -10.
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(op, -10, mpfr_rnd_t.MPFR_RNDN) == 0);

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

// Set rop = |op|.
Assert.IsTrue(mpfr_lib.mpfr_abs(rop, op, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert that the value of rop is 10.
Assert.IsTrue(mpfr_lib.mpfr_cmp_si(rop, 10) == 0);

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