Skip to content

Latest commit

 

History

History

exponent-bias

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

FLOAT64_EXPONENT_BIAS

The bias of a double-precision floating-point number's exponent.

Usage

var FLOAT64_EXPONENT_BIAS = require( '@stdlib/constants/float64/exponent-bias' );

FLOAT64_EXPONENT_BIAS

The bias of a double-precision floating-point number's exponent.

var bool = ( FLOAT64_EXPONENT_BIAS === 1023 );
// returns true

Examples

var FLOAT64_EXPONENT_BIAS = require( '@stdlib/constants/float64/exponent-bias' );

console.log( FLOAT64_EXPONENT_BIAS );
// => 1023

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT64_EXPONENT_BIAS

Macro for the bias of a double-precision floating-point number's exponent.


See Also