Skip to content

Latest commit

 

History

History
141 lines (79 loc) · 2.92 KB

File metadata and controls

141 lines (79 loc) · 2.92 KB

FLOAT16_MIN_BASE10_EXPONENT_SUBNORMAL

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

Usage

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

FLOAT16_MIN_BASE10_EXPONENT_SUBNORMAL

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

var bool = ( FLOAT16_MIN_BASE10_EXPONENT_SUBNORMAL === -8 );
// returns true

Examples

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

console.log( FLOAT16_MIN_BASE10_EXPONENT_SUBNORMAL );
// => -8

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT16_MIN_BASE10_EXPONENT_SUBNORMAL

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