You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mathjs is so powerful!
I'm using it to do something I'm very interested in, a full platform computing APP.
I use the symbol '$' to keep an AST from being calculated.
It's like the Hold function in Mathematica or the hold function in MATLAB.
It would be interesting if a MathNode could also be computed!
It's like
$(sin(x))+$(cos(x))==$(sin(x)+cos(x))
The text was updated successfully, but these errors were encountered:
Personally, I would love to have more operations for Nodes, see a related issue #1732. However the current dependency system isn't quite ready for all the circular dependencies this would bring (add(Node, Node) depends on Node, which depends on add(number, number)), see PR #1747 for the problem, and issue #1975 for a lengthy discussion on the possible fix of it.
If you have a proposal on how to implement this in a reasonable way that would work with the current dependency system, I'd love to hear it. Comments in the linked issues are also welcome :)
Mathjs is so powerful!
I'm using it to do something I'm very interested in, a full platform computing APP.
I use the symbol '$' to keep an AST from being calculated.
It's like the Hold function in Mathematica or the hold function in MATLAB.
It would be interesting if a MathNode could also be computed!
It's like
The text was updated successfully, but these errors were encountered: