mirror of
https://github.com/MikeMcl/decimal.js.git
synced 2026-09-23 04:14:32 +00:00
v5.0.0
This commit is contained in:
157
README.md
157
README.md
@@ -6,12 +6,11 @@ An arbitrary-precision Decimal type for JavaScript.
|
||||
|
||||
## Features
|
||||
|
||||
- Integers and floats
|
||||
- Simple but full-featured API
|
||||
- Replicates many of the methods of JavaScript's `Number.prototype` and `Math` objects
|
||||
- Also handles hexadecimal, binary and octal values
|
||||
- Faster, smaller, and perhaps easier to use than JavaScript versions of Java's BigDecimal
|
||||
- Simple API but full-featured
|
||||
- Replicates the `toExponential`, `toFixed`, `toPrecision` and `toString` methods of JavaScript's Number type
|
||||
- Includes a `toFraction` and correctly-rounded `exp`, `ln`, `log` and `sqrt` functions
|
||||
- Supports non-integer powers
|
||||
- Works with numbers with or without fraction digits in bases from 2 to 64 inclusive
|
||||
- No dependencies
|
||||
- Wide platform compatibility: uses JavaScript 1.5 (ECMAScript 3) features only
|
||||
- Comprehensive [documentation](http://mikemcl.github.io/decimal.js/) and test set
|
||||
@@ -24,7 +23,7 @@ precision is specified in terms of significant digits instead of decimal places,
|
||||
calculations are rounded to the precision (similar to Python's decimal module) rather than just
|
||||
those involving division.
|
||||
|
||||
This library also adds `exp`, `ln` and `log` functions, among others, and supports non-integer powers.
|
||||
This library also adds the trigonometric functions, among others, and supports non-integer powers.
|
||||
|
||||
Another major difference is that this library enables multiple Decimal constructors to be created
|
||||
each with their own configuration. This is, however, a significantly larger library than
|
||||
@@ -34,16 +33,18 @@ Another major difference is that this library enables multiple Decimal construct
|
||||
|
||||
The library is the single JavaScript file *decimal.js* (or minified, *decimal.min.js*).
|
||||
|
||||
It can be loaded via a script tag in an HTML document for the browser
|
||||
It can be loaded using a script tag in an HTML document for the browser
|
||||
|
||||
<script src='./relative/path/to/decimal.js'></script>
|
||||
<script src='path/to/decimal.js'></script>
|
||||
|
||||
or as a CommonJS, [Node.js](http://nodejs.org) or AMD module using `require`.
|
||||
or as a [Node.js](http://nodejs.org) module using `require`.
|
||||
|
||||
For Node, the library is also available from the [npm](https://npmjs.org/) registry
|
||||
var Decimal = require('decimal');
|
||||
|
||||
For Node, the library is available from the [npm](https://npmjs.org/) registry
|
||||
|
||||
$ npm install decimal.js
|
||||
|
||||
|
||||
To load with AMD loader libraries such as [requireJS](http://requirejs.org/):
|
||||
|
||||
require(['decimal'], function(Decimal) {
|
||||
@@ -55,20 +56,23 @@ To load with AMD loader libraries such as [requireJS](http://requirejs.org/):
|
||||
*In all examples below, `var`, semicolons and `toString` calls are not shown.
|
||||
If a commented-out value is in quotes it means `toString` has been called on the preceding expression.*
|
||||
|
||||
The library exports a single function object, `Decimal`, the constructor of Decimal numbers.
|
||||
The library exports a single function object, `Decimal`, the constructor of Decimal instances.
|
||||
|
||||
It accepts a value of type number *(up to 15 significant digits only)*, string or Decimal.
|
||||
It accepts a value of type number, string or Decimal.
|
||||
|
||||
x = new Decimal(123.4567)
|
||||
y = new Decimal('123456.7e-3')
|
||||
z = new Decimal(x)
|
||||
x.equals(y) && y.equals(z) && x.equals(z) // true
|
||||
|
||||
A base from 2 to 36 inclusive can also be specified.
|
||||
A value can also be in binary, hexadecimal or octal if the appropriate prefix is included.
|
||||
|
||||
x = new Decimal(1011, 2) // '11'
|
||||
y = new Decimal('zz.9', 36) // '1295.25'
|
||||
z = x.plus(y) // '1306.25'
|
||||
x = new Decimal('0xff.f') // '255.9375'
|
||||
y = new Decimal('1b10101100') // '172'
|
||||
z = x.plus(y) // '427.9375'
|
||||
|
||||
z.toBinary() // '0b110101011.1111'
|
||||
z.toBinary(13) // '0b1.101010111111p+8'
|
||||
|
||||
A Decimal is immutable in the sense that it is not changed by its methods.
|
||||
|
||||
@@ -87,35 +91,31 @@ Many method names have a shorter alias.
|
||||
x.squareRoot().dividedBy(y).toPower(3).equals(x.sqrt().div(y).pow(3)) // true
|
||||
x.cmp(y.mod(z).neg()) == 1 && x.comparedTo(y.modulo(z).negated()) == 1 // true
|
||||
|
||||
Like JavaScript's Number type, there are `toExponential`, `toFixed` and `toPrecision` methods
|
||||
Like JavaScript's Number type, there are `toExponential`, `toFixed` and `toPrecision` methods,
|
||||
|
||||
x = new Decimal(255.5)
|
||||
x.toExponential(5) // '2.55500e+2'
|
||||
x.toFixed(5) // '255.50000'
|
||||
x.toPrecision(5) // '255.50'
|
||||
|
||||
and a base can be specified for `toString`.
|
||||
|
||||
x.toString(16) // 'ff.8'
|
||||
|
||||
There is a `toFormat` method,
|
||||
and many of the methods of JavaScript's Math object are also replicated.
|
||||
|
||||
y = new Decimal(1e6)
|
||||
y.toFormat(2) // '1,000,000.00'
|
||||
Decimal.sqrt('6.98372465832e+9823') // '8.3568682281821340204e+4911'
|
||||
Decimal.pow(2, 0.0979843) // '1.0702770511687781839'
|
||||
|
||||
There are `isNaN` and `isFinite` methods, as `NaN` and `Infinity` are valid `Decimal` values,
|
||||
|
||||
x = new Decimal(NaN) // 'NaN'
|
||||
y = new Decimal(Infinity) // 'Infinity'
|
||||
x.isNaN() && !y.isNaN() && !x.isFinite() && !y.isFinite() // true
|
||||
|
||||
a `toFraction` method with an optional *maximum denominator* argument
|
||||
and a `toFraction` method with an optional *maximum denominator* argument
|
||||
|
||||
z = new Decimal(355)
|
||||
pi = z.dividedBy(113) // '3.1415929204'
|
||||
pi.toFraction() // [ '7853982301', '2500000000' ]
|
||||
pi.toFraction(1000) // [ '355', '113' ]
|
||||
|
||||
and `isNaN` and `isFinite` methods, as `NaN` and `Infinity` are valid `Decimal` values.
|
||||
|
||||
x = new Decimal(NaN) // 'NaN'
|
||||
y = new Decimal(Infinity) // 'Infinity'
|
||||
x.isNaN() && !y.isNaN() && !x.isFinite() && !y.isFinite() // true
|
||||
|
||||
All calculations are rounded according to the number of significant digits and rounding mode
|
||||
specified by the `precision` and `rounding` properties of the Decimal constructor.
|
||||
|
||||
@@ -126,7 +126,7 @@ As mentioned above, multiple Decimal constructors can be created, each with thei
|
||||
Decimal.config({ precision: 5, rounding: 4 })
|
||||
|
||||
// Create another Decimal constructor, optionally passing in a configuration object
|
||||
Decimal10 = Decimal.constructor({ precision: 10, rounding: 1 })
|
||||
Decimal10 = Decimal.clone({ precision: 10, rounding: 1 })
|
||||
|
||||
x = new Decimal(5)
|
||||
y = new Decimal10(5)
|
||||
@@ -134,18 +134,10 @@ As mentioned above, multiple Decimal constructors can be created, each with thei
|
||||
x.div(3) // '1.6667'
|
||||
y.div(3) // '1.666666666'
|
||||
|
||||
Decimal.precision // 5
|
||||
Decimal10.precision // 10
|
||||
|
||||
Many of the methods of JavaScript's Math object are also replicated
|
||||
|
||||
Decimal.sqrt('6.98372465832e+9823') // '8.3568682281821340204e+4911'
|
||||
Decimal.pow(2, 0.0979843) // '1.0702770511687781839'
|
||||
|
||||
The value of a Decimal is stored in a floating point format in terms of a coefficient, exponent and sign.
|
||||
The value of a Decimal is stored in a floating point format in terms of its digits, exponent and sign.
|
||||
|
||||
x = new Decimal(-12345.67);
|
||||
x.c // [ 12345, 6700000 ] coefficient (base 10000)
|
||||
x.d // [ 12345, 6700000 ] digits (base 10000)
|
||||
x.e // 4 exponent (base 10)
|
||||
x.s // -1 sign
|
||||
|
||||
@@ -153,23 +145,21 @@ For further information see the [API](http://mikemcl.github.io/decimal.js/) refe
|
||||
|
||||
## Test
|
||||
|
||||
The *test* directory contains the test scripts for each method.
|
||||
The library can be tested using Node.js or a browser.
|
||||
|
||||
The tests can be run with Node or a browser.
|
||||
The *test* directory contains the file *test.js* which runs all the tests when executed by Node, and the file *test.html* which runs all the tests when opened in a browser.
|
||||
|
||||
To test a single method use, from a command-line shell in the root directory, for example
|
||||
|
||||
$ node test/toFraction
|
||||
|
||||
To test all the methods
|
||||
|
||||
$ node test/every-test
|
||||
|
||||
or
|
||||
To run all the tests, from a command-line at the root directory using npm
|
||||
|
||||
$ npm test
|
||||
|
||||
For the browser, see *single-test.html* and *every-test.html* in the *test/browser* directory,
|
||||
or at the *test* directory using Node
|
||||
|
||||
$ node test
|
||||
|
||||
Each separate test module can also be executed individually, for example, at the *test/modules* directory
|
||||
|
||||
$ node toFraction
|
||||
|
||||
|
||||
## Build
|
||||
@@ -182,65 +172,16 @@ then
|
||||
|
||||
npm run build
|
||||
|
||||
will create *decimal.min.js*.
|
||||
|
||||
A source map will also be created in the *doc* directory.
|
||||
will create *decimal.min.js*, and a source map will also be added to the *doc* directory.
|
||||
|
||||
## Feedback
|
||||
|
||||
Open an issue, or email
|
||||
Michael <a href='mailto:M8ch88l@gmail.com'>M8ch88l@gmail.com</a>
|
||||
<a href='mailto:M8ch88l@gmail.com'>M8ch88l@gmail.com</a>
|
||||
|
||||
[Bitcoin](https://bitcoin.org/en/getting-started) donation gratefully received:
|
||||
**1PjzRBjGJycti49AXTiKsdC4PRCnTbyUyf**
|
||||
|
||||
Thank you
|
||||
BTC 16MjxmTB5EZxY5Uk9xyhfsu4n9gYxEJYkY
|
||||
|
||||
## Licence
|
||||
|
||||
MIT Expat.
|
||||
|
||||
See LICENCE.
|
||||
|
||||
## Change Log
|
||||
|
||||
####4.0.3
|
||||
* 2/10/2015 Internal round function bugfix.
|
||||
|
||||
####4.0.2
|
||||
* 20/02/2015 Add bower.json. Add source map. Amend travis CI. Amend doc/comments.
|
||||
|
||||
####4.0.1
|
||||
* 11/12/2014 Assign correct constructor when duplicating a Decimal.
|
||||
|
||||
####4.0.0
|
||||
* 10/11/2014 `toFormat` amended to use `Decimal.format` object for more flexible configuration.
|
||||
|
||||
####3.0.1
|
||||
* 8/06/2014 Surround crypto require in try catch. See issue #5
|
||||
|
||||
####3.0.0
|
||||
* 4/06/2014 `random` simplified. Major internal changes mean the properties of a Decimal must now be considered read-only
|
||||
|
||||
####2.1.0
|
||||
* 4/06/2014 Amend UMD
|
||||
|
||||
####2.0.3
|
||||
* 8/05/2014 Fix NaN toNumber
|
||||
|
||||
####2.0.2
|
||||
* 30/04/2014 Correct doc links
|
||||
|
||||
####2.0.1
|
||||
* 10/04/2014 Update npmignore
|
||||
|
||||
####2.0.0
|
||||
* 10/04/2014 Add `toSignificantDigits`
|
||||
* Remove `toInteger`
|
||||
* No arguments to `ceil`, `floor`, `round` and `trunc`
|
||||
|
||||
####1.0.1
|
||||
* 07/04/2014 Minor documentation clean-up
|
||||
|
||||
####1.0.0
|
||||
* 02/04/2014 Initial release
|
||||
See *LICENCE.md*
|
||||
|
||||
Reference in New Issue
Block a user