FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL

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

Usage

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

FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL

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

var bool = ( FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL === -38 );
// returns true

Examples

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

console.log( FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL );
// => -38

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL

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

Did you find this page helpful?