Glen Whitney

Results 196 comments of Glen Whitney

The JavaScript `number` type is a [double-precision 64-bit binary format IEEE 754](https://en.wikipedia.org/wiki/Floating-point_arithmetic) floating-point number. As with any computational representation, there are limits to its precision, and you are hitting up...

I saw that the PR for this stalled for whatever reasons, but it still seems like a worthy goal. In particular, I just wanted to say that if something along...

Well, could it work for docgenerator.js to extract the JSON for the embedded docs (all those `src/expression/embeddedDocs/**.js` files) from the jsdoc-style comments in the main source files? Then the information...

[Took the liberty of fixing the zeros in the issue statement to be 22s]

@kmdrGroch thanks for the contribution, digamma will fill a nice gap in mathjs. And some good news, you can eliminate the portion of digamma applying elementwise to matrices; mathjs is...

I have no objection to this in principle, but presumably we would want some standardized test harness to run the TypeScript tests rather than rolling our own. I presume there...

> Or (2) use `ts-node` like Note that for running index.ts as we currently do (no mocha) we couldn't get ts-node to work, but rather ended up with `node` and...

I think there's more going on here. One gets a tiny bit farther by trying: `npx webpack ./custom_loading.js -o custom_loading.bundle.js --mode=production` But then the error becomes ``` Module parse failed:...

OK, well, both of the options in the last comment at least allow webpack to produce something. That is to say, if I make the change from the first bullet...

Some observations: 1) Except when EXPR is a symbol node or AccessorNode, the syntax EXPR(A, B) is currently a syntax error. Since it can't be implicit multiplication, there doesn't seem...