mpfr_libmpfr_get_emax Method |
Namespace: Math.Mpfr.Native
public static mpfr_exp_t mpfr_get_emax()
Public Shared Function mpfr_get_emax As mpfr_exp_t
public: static mpfr_exp_t mpfr_get_emax()
static member mpfr_get_emax : 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 maximum exponent. Assert.IsTrue(mpfr_lib.mpfr_get_emax() == 1073741823);
' Assert maximum exponent. Assert.IsTrue(mpfr_lib.mpfr_get_emax() = 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.