mpfr_libmpfr_get_emin Method |
Namespace: Math.Mpfr.Native
public static mpfr_exp_t mpfr_get_emin()
Public Shared Function mpfr_get_emin As mpfr_exp_t
public: static mpfr_exp_t mpfr_get_emin()
static member mpfr_get_emin : unit -> mpfr_exp_t
The smallest positive value of a floating-point variable is one half times 2 raised to the smallest exponent and the largest value has the form (1 - epsilon) times 2 raised to the largest exponent, where epsilon depends on the precision of the considered variable.
// Assert minimum exponent. Assert.IsTrue(mpfr_lib.mpfr_get_emin() == -1073741823);
' Assert minimum exponent. Assert.IsTrue(mpfr_lib.mpfr_get_emin() = -1073741823)
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.