UNPKG

1.79 kBMarkdownView Raw
1bigfloat
2========
3
4[![npm version](https://img.shields.io/npm/v/bigfloat.svg)](https://www.npmjs.com/package/bigfloat)
5
6`bigfloat` is a fast arbitrary precision math library optimized for computational geometry and geoinformatics.
7It provides base 2 floating point:
8
9- conversion from JavaScript number type `x = new BigFloat(123.456)`
10- addition `x.add(y)`
11- subtraction `x.sub(y)`
12- multiplication `x.mul(y)`
13- comparison `x.deltaFrom(y)`
14- conversion to string in base 2, 10 or 16 `x.toString(10)`
15
16without ever losing any significant bits. Numbers are immutable, so all operations return a new BigFloat.
17
18Internally numbers are represented in 32-bit limbs (digits in base 2^32) somewhat like in the [GMP](https://gmplib.org/manual/Float-Internals.html) library. The least significant limb is stored first, because basic algorithms for arithmetic operations progress from the least to most significant digit while propagating carry. If carry causes the output to grow, adding a new limb at the end of the array is faster than adding it in the beginning.
19
20`bigfloat` is optimized for exponents relatively close to zero, so the location of the decimal point is always present in the limb array, even if that introduces otherwise insignificant leading or trailing zero digits.
21
22Getting started
23---
24
25```bash
26git clone https://github.com/charto/bigfloat.git node_modules/bigfloat
27cd node_modules/bigfloat && npm install
28cd ../..
29node
30```
31
32OR
33
34```bash
35npm install bigfloat
36node
37```
38
39THEN
40
41```js
42x = Math.pow(2, 53);
43console.log(x + 1 - x); // Prints 0
44
45BigFloat = require('bigfloat').BigFloat;
46console.log(new BigFloat(x).add(1).sub(x).toString()); // Prints 1
47```
48
49License
50===
51
52[The MIT License](https://raw.githubusercontent.com/charto/bigfloat/master/LICENSE)
53
54Copyright (c) 2015 BusFaster Ltd