Skip to content

Latest commit

 

History

History
141 lines (79 loc) · 2.89 KB

File metadata and controls

141 lines (79 loc) · 2.89 KB

FLOAT16_MAX_BASE10_EXPONENT_SUBNORMAL

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

Usage

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

FLOAT16_MAX_BASE10_EXPONENT_SUBNORMAL

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

var bool = ( FLOAT16_MAX_BASE10_EXPONENT_SUBNORMAL === -5 );
// returns true

Examples

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

console.log( FLOAT16_MAX_BASE10_EXPONENT_SUBNORMAL );
// => -5

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT16_MAX_BASE10_EXPONENT_SUBNORMAL

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