FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL

The maximum base 10 exponent for a subnormal double-precision floating-point number.

Usage

var FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/max-base10-exponent-subnormal' );

FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL

The maximum base 10 exponent for a subnormal double-precision floating-point number.

var bool = ( FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL === -308 );
// returns true

Examples

var FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/max-base10-exponent-subnormal' );

console.log( FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL );
// => -308

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL

Macro for the maximum base 10 exponent for a subnormal double-precision floating-point number.

Did you find this page helpful?