Click or drag to resize
mpfr_libmpfr_get_exp Method
Return the exponent of x, assuming that x is a non-zero ordinary number and the significand is considered in [1/2,1).

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 mpfr_exp_t mpfr_get_exp(
	mpfr_t x
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.

Return Value

Type: mpfr_exp_t
Return the exponent of x, assuming that x is a non-zero ordinary number and the significand is considered in [1/2,1).
Remarks

The behavior for NaN, infinity or zero is undefined.

Examples
// Create, initialize, and set a new floating-point number x to 100.
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);

// Assert exp of x.
Assert.IsTrue(mpfr_lib.mpfr_get_exp(x) == 7);

// Release unmanaged memory allocated for x.
mpfr_lib.mpfr_clear(x);
See Also