Socket
Socket
Sign inDemoInstall

math-float64-to-words

Package Overview
Dependencies
73
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    math-float64-to-words

Splits a floating-point number into a higher order word and a lower order word.


Version published
Weekly downloads
2.7K
decreased by-5.23%
Maintainers
1
Install size
837 kB
Created
Weekly downloads
 

Readme

Source

Words

NPM version Build Status Coverage Status Dependencies

Splits a double-precision floating-point number into a higher order word and a lower order word.

Installation

$ npm install math-float64-to-words

Usage

var words = require( 'math-float64-to-words' );
words( x )

Splits a double-precision floating-point number into a higher order word (32-bit integer) and a lower order word (32-bit integer).

var w = words( 3.14e201 );
// returns [ 1774486211, 2479577218 ]

The returned array contains two elements: a higher order word and a lower order word. The lower order word contains the less significant bits, while the higher order word contains the more significant bits and includes the exponent and sign.

var high = w[ 0 ];
// returns 1774486211

var low = w[ 1 ];
// returns 2479577218

Examples

var floor = require( 'math-floor' );
var pow = require( 'math-power' );
var words = require( 'math-float64-to-words' );

var frac;
var exp;
var w;
var x;
var i;

// Generate random numbers and split into words...
for ( i = 0; i < 100; i++ ) {
	frac = Math.random() * 10;
	exp = -floor( Math.random()*324 );
	x = frac * pow( 10, exp );
	w = words( x );
	console.log( 'x: %d. higher: %d. lower: %d.', x, w[ 0 ], w[ 1 ] );
}

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 © 2016. The Compute.io Authors.

Keywords

FAQs

Last updated on 17 Jan 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc