-
Hey there,
I recently started working with mathjs and I seriously love this library. It has everything anyone can ask for but recently I came across an issue that is bothering me. Whenever I run `m…
-
If the input to the expression parser contains boolean, null or undefined literals, the parsed expression is built using SymbolNodes instead of ConstantNodes. However, the ConstantNode explicitly cont…
-
When using number_format() [like here](https://github.com/Litipk/php-bignumbers/blob/master/src/Decimal.php#L143), you are relying on php's float precision.
Trying to use a number like `Decimal::from…
-
If you run the following piece of code.
```javascript
let mathjs = require("mathjs");
console.log(mathjs.simplify(mathjs.parse("1/3")));
mathjs.config({
number: 'BigNumber'
});
…
onzag updated
6 years ago
-
There's a little note about what happens when this module _reads_ a BigNumber from a MySQL database, but I can find now information about to `INSERT` or `UPDATE` a BigNumber. I assumed that if I passe…
dskvr updated
7 years ago
-
## Version **3.19.0** of [mathjs](https://github.com/josdejong/mathjs) was just published.
Branch
Build failing 🚨
Dependency
math…
-
Under this package,
```javascript
const ten = new Decimal(10);
const three = new Decimal(3);
ten.div(three).mul(three).toString(); // => '9.9999999999999999999'
```
Theoretical, /3 and *3 can ca…
-
Are bitwise operations limited to 32 bits? Left shift wraps around to 0 at 32. I.E 1
-
> stats (exchanged byteCount and so on) kind of don't have any self-guards to overflowing
I believe that we should have a way for stats to be disabled and at the same time, make it so they are upda…
-
The results of some of our calculations are BigNumbers (`a` below) and some are numbers (`b` below). However when we try to mix them in calculations, it fails because sometimes the numbers cannot be c…