FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL

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

Usage

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

FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL

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

var bool = ( FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL === -45 );
// returns true

Examples

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

console.log( FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL );
// => -45

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT32_MIN_BASE10_EXPONENT_SUBNORMAL

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

Did you find this page helpful?