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.

Did you find this page helpful?