-
The balance in the top-right corner is always 0
-
From the README
`Bitcoin deals with really big numbers on a regular basis. Javascript Numbers lose precision after 53 bits. It is absolutely necessary to use big numbers when dealing with satoshi val…
-
At present, value will become infinity if too large, maybe we can use a library like [**bignumber.js**](https://github.com/MikeMcl/bignumber.js/) to handle large integers?
-
## Version **4.2.0** of [mathjs](https://github.com/josdejong/mathjs) was just published.
Branch
Build failing 🚨
Dependency
mathj…
-
Hello.
I have enabled this option, but I'm getting my expression columns always being returned as strings.
Example:
`"SELECT 1*1 as test"`
I would expect [{test: 1}] to be returned, bu…
-
When I pass [MikeMcl BigNumber](https://github.com/MikeMcl/bignumber.js/) the return value is string. It used to recognise BigNumbers from that library pre 1.0.0
```
import BigNumber from "bignumbe…
-
When using `eval` with units, first unit in string is set as the "ground" unit for the calculation. For example:
```js
const m = require('mathjs')
m.eval('1cm + 1mm').toString() // '1.099999999999…
arve0 updated
6 years ago
-
Currently, the `ConstantNode` type holds a stringified value and its type, like
`new ConstantNode('2', 'number')`. When evaluating the ConstantNode, it is parsed into a number, BigNumber, or Fractio…
-
Please see this example: https://jsfiddle.net/mc0fgvxt/
If MathJS is configured to use big number the `derivative` function always fails by throwing an exception:
`TypeError: Unsupported type of v…
-
```js
2999999 + 1
3e+6 // => no error, as expected
2999999 g + 1 g
3 Mg [[round-off error]]
This result contains a round-off error which is hidden from the output. The unrounded result is:
3.0…