Smallest positive normalized single-precision floating-point number.
var FLOAT32_SMALLEST_NORMAL = require( '@stdlib/constants/float32/smallest-normal' );
Smallest positive normalized single-precision floating-point number.
var bool = ( FLOAT32_SMALLEST_NORMAL === 1.1754943508222875e-38 );
// returns true
var FLOAT32_SMALLEST_NORMAL = require( '@stdlib/constants/float32/smallest-normal' );
console.log( FLOAT32_SMALLEST_NORMAL );
// => 1.1754943508222875e-38
#include "stdlib/constants/float32/smallest_normal.h"
Macro for the smallest positive normalized single-precision floating-point number.
@stdlib/constants/float32/smallest-subnormal
: smallest positive single-precision floating-point subnormal number.@stdlib/constants/float64/smallest-normal
: smallest positive double-precision floating-point normal number.