@stdlib/number-float32-base-signbit
v0.2.2
Published
Return a boolean indicating if the sign bit for a single-precision floating-point number is on (true) or off (false).
Downloads
49
Readme
signbit
Return a boolean indicating if the sign bit for a single-precision floating-point number is on (true) or off (false).
Installation
npm install @stdlib/number-float32-base-signbit
Usage
var signbitf = require( '@stdlib/number-float32-base-signbit' );
signbitf( x )
Returns a boolean
indicating if the sign bit for a single-precision floating-point number is on (true
) or off (false
).
var toFloat32 = require( '@stdlib/number-float64-base-to-float32' );
var bool = signbitf( toFloat32( 4.0 ) );
// returns false
bool = signbitf( toFloat32( -9.14e-34 ) );
// returns true
bool = signbitf( 0.0 );
// returns false
bool = signbitf( -0.0 );
// returns true
Examples
var toFloat32 = require( '@stdlib/number-float64-base-to-float32' );
var randu = require( '@stdlib/random-base-randu' );
var signbitf = require( '@stdlib/number-float32-base-signbit' );
var sign;
var x;
var i;
for ( i = 0; i < 100; i++ ) {
x = (randu()*100.0) - 50.0;
x = toFloat32( x );
sign = signbitf( x );
sign = ( sign ) ? 'true' : 'false';
console.log( 'x: %d. signbit: %s.', x, sign );
}
See Also
@stdlib/number-float64/base/signbit
: return a boolean indicating if the sign bit for a double-precision floating-point number is on (true) or off (false).
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.