CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
README.md52 linesDownload Raw Back to ieee754
1# ieee754 [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url]2 3[travis-image]: https://img.shields.io/travis/feross/ieee754/master.svg4[travis-url]: https://travis-ci.org/feross/ieee7545[npm-image]: https://img.shields.io/npm/v/ieee754.svg6[npm-url]: https://npmjs.org/package/ieee7547[downloads-image]: https://img.shields.io/npm/dm/ieee754.svg8[downloads-url]: https://npmjs.org/package/ieee7549[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg10[standard-url]: https://standardjs.com11 12[![saucelabs][saucelabs-image]][saucelabs-url]13 14[saucelabs-image]: https://saucelabs.com/browser-matrix/ieee754.svg15[saucelabs-url]: https://saucelabs.com/u/ieee75416 17### Read/write IEEE754 floating point numbers from/to a Buffer or array-like object.18 19## install20 21```22npm install ieee75423```24 25## methods26 27`var ieee754 = require('ieee754')`28 29The `ieee754` object has the following functions:30 31```32ieee754.read = function (buffer, offset, isLE, mLen, nBytes)33ieee754.write = function (buffer, value, offset, isLE, mLen, nBytes)34```35 36The arguments mean the following:37 38- buffer = the buffer39- offset = offset into the buffer40- value = value to set (only for `write`)41- isLe = is little endian?42- mLen = mantissa length43- nBytes = number of bytes44 45## what is ieee754?46 47The IEEE Standard for Floating-Point Arithmetic (IEEE 754) is a technical standard for floating-point computation. [Read more](http://en.wikipedia.org/wiki/IEEE_floating_point).48 49## license50 51BSD 3 Clause. Copyright (c) 2008, Fair Oaks Labs, Inc.52