mpfr_libmpfr_get_prec Method |
Return the precision of x, i.e., the number of bits used to store its significand.
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_prec_t mpfr_get_prec(
mpfr_t x
)
Public Shared Function mpfr_get_prec (
x As mpfr_t
) As mpfr_prec_t
public:
static mpfr_prec_t mpfr_get_prec(
mpfr_t^ x
)
static member mpfr_get_prec :
x : mpfr_t -> mpfr_prec_t
Parameters
- x
- Type: Math.Mpfr.Nativempfr_t
The floating-point number.
Return Value
Type:
mpfr_prec_tThe precision of
x, i.e., the number of bits used to store its significand.
Examples
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x) != 0);
Assert.IsTrue(mpfr_lib.mpfr_get_prec(x) == 64U);
mpfr_lib.mpfr_clear(x);
Dim x As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(x, 64U)
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x) <> 0)
Assert.IsTrue(mpfr_lib.mpfr_get_prec(x) = 64U)
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 AlsoReference
mpfr_get_prec(mpfr_t)