1.0.1 • Published 8 years ago

math-float32-from-bits v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

From Bits

NPM version Build Status Coverage Status Dependencies

Creates a single-precision floating-point number from an IEEE 754 literal bit representation.

Installation

$ npm install math-float32-from-bits

Usage

var fromBits = require( 'math-float32-from-bits' );

fromBits( bstr )

Creates a single-precision floating-point number from an IEEE 754 literal bit representation.

var bstr = '01000000100000000000000000000000';
var val = fromBits( bstr );
// returns 4

bstr = '01000000010010010000111111011011';
val = fromBits( bstr );
// returns ~3.14

bstr = '11111111011011000011101000110011';
val = fromBits( bstr );
// returns ~-3.14e+38

The function handles subnormals.

bstr = '10000000000000000000000000010110';
val = fromBits( bstr );
// returns ~-3.08e-44

bstr = '00000000000000000000000000000001';
val = fromBits( bstr );
// returns ~1.40e-45

The function handles special values.

bstr = '00000000000000000000000000000000';
val = fromBits( bstr );
// returns 0

bstr = '10000000000000000000000000000000';
val = fromBits( bstr );
// returns -0

bstr = '01111111110000000000000000000000';
val = fromBits( bstr );
// returns NaN

bstr = '01111111100000000000000000000000';
val = fromBits( bstr );
// returns +infinity

bstr = '11111111100000000000000000000000';
val = fromBits( bstr );
// returns -infinity

Examples

var round = require( 'math-round' );
var pow = require( 'math-power' );
var toFloat32 = require( 'float64-to-float32' );
var toBits = require( 'math-float32-bits' );
var fromBits = require( 'math-float32-from-bits' );

var frac;
var sign;
var exp;
var b;
var x;
var y;
var i;

// Convert random numbers to IEEE 754 literal bit representations and then convert them back...
for ( i = 0; i < 100; i++ ) {
	if ( Math.random() < 0.5 ) {
		sign = -1;
	} else {
		sign = 1;
	}
	frac = Math.random() * 10;
	exp = round( Math.random()*100 );
	if ( Math.random() < 0.5 ) {
		exp = -exp;
	}
	x = sign * frac * pow( 2, exp );
	x = toFloat32( x );

	b = toBits( x );
	y = fromBits( b );

	console.log( '%d => %s => %d', x, b, y );
	console.log( x === y );
}

To run the example code from the top-level application directory,

$ node ./examples/index.js

Tests

Unit

This repository uses tape for unit tests. To run the tests, execute the following command in the top-level application directory:

$ make test

All new feature development should have corresponding unit tests to validate correct functionality.

Test Coverage

This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:

$ make test-cov

Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,

$ make view-cov

Browser Support

This repository uses Testling for browser testing. To run the tests in a (headless) local web browser, execute the following command in the top-level application directory:

$ make test-browsers

To view the tests in a local web browser,

$ make view-browser-tests

License

MIT license.

Copyright

Copyright © 2016. The Compute.io Authors.