FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL

The minimum biased base 2 exponent for a subnormal double-precision floating-point number.

Usage

var FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/min-base2-exponent-subnormal' );

FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL

The minimum biased base 2 exponent for a subnormal double-precision floating-point number.

var bool = ( FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL === -1074 );
// returns true

Examples

var FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/min-base2-exponent-subnormal' );

console.log( FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL );
// => -1074

C APIs

Usage

#include "stdlib/constants/float64/min_base2_exponent_subnormal.h"

STDLIB_CONSTANT_FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL

Macro for the minimum biased base 2 exponent for a subnormal double-precision floating-point number.

Did you find this page helpful?