javascript-cas
javascript-cas copied to clipboard
Computer Algebra System written in JavaScript.
Something broke it. It should work like this: ``` js var del = M('d / (dx)', {x: M('(x,y,z)')}); del.default(del.bound.x); // should equal 3. del.default(del.bound.x.unbound.x); // should equal (1,0,0). ```
In order to quickly fix compilation of x - (y - z), I made it always insert the parentheses if the operator is not associative or the precedence requires it....
Hi! Thanks for this handy library! I'm trying to wire it up to some LaTex coming from MathQuill (http://jsbin.com/eCiNOGU/2/edit) and have run into a couple of issues. Maybe there is...