mpfr_libmpfr_min_prec Method |
Return the minimal number of bits required to store the significand of x, and 0 for special values, including 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 mpfr_prec_t mpfr_min_prec(
mpfr_t x
)
Public Shared Function mpfr_min_prec (
x As mpfr_t
) As mpfr_prec_t
public:
static mpfr_prec_t mpfr_min_prec(
mpfr_t^ x
)
static member mpfr_min_prec :
x : mpfr_t -> mpfr_prec_t
Parameters
- x
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
Return Value
Type:
mpfr_prec_tReturn the minimal number of bits required to store the significand of
x, and 0 for special values, including 0.
Examples
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_d(x, 10.0, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(mpfr_lib.mpfr_min_prec(x) == 3);
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_d(x, 10.0, mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(mpfr_lib.mpfr_min_prec(x) = 3)
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