Skip to content

Latest commit

 

History

History

smallest-normal

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

FLOAT32_SMALLEST_NORMAL

Smallest positive normalized single-precision floating-point number.

Usage

var FLOAT32_SMALLEST_NORMAL = require( '@stdlib/constants/float32/smallest-normal' );

FLOAT32_SMALLEST_NORMAL

Smallest positive normalized single-precision floating-point number.

var bool = ( FLOAT32_SMALLEST_NORMAL === 1.1754943508222875e-38 );
// returns true

Examples

var FLOAT32_SMALLEST_NORMAL = require( '@stdlib/constants/float32/smallest-normal' );

console.log( FLOAT32_SMALLEST_NORMAL );
// => 1.1754943508222875e-38

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL

Macro for the smallest positive normalized single-precision floating-point number.


See Also