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)
Syntaxpublic static mpfr_exp_t mpfr_get_exp(
mpfr_t x
)
Public Shared Function mpfr_get_exp (
x As mpfr_t
) As mpfr_exp_t
public:
static mpfr_exp_t mpfr_get_exp(
mpfr_t^ x
)
static member mpfr_get_exp :
x : mpfr_t -> mpfr_exp_t
Parameters
- x
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
Return Value
Type:
mpfr_exp_tReturn 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
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.IsTrue(mpfr_lib.mpfr_get_exp(x) == 7);
mpfr_lib.mpfr_clear(x);
Dim x As mpfr_t = 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.IsTrue(mpfr_lib.mpfr_get_exp(x) = 7)
mpfr_lib.mpfr_clear(x)
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