math-expressions
math-expressions copied to clipboard
A library for parsing and evaluating mathematical expressions, supporting real numbers, vectors, and basic interval arithmetic.
Great package - are you planning to support physical units in this package? Like area, length, mass, etc...? There is a great JS library which allows for quite "complex" calculations...
every calculator has pi, e and factorial methods. but how to parse them using your library?
Hi, I have an input like `8E` After I put this into the parser for evaluation, the parser instantly converts it into `e({8.0})` Is there a way to suppress this...
Thank you for providing this plug-in, but when I set the variable to a combination of letters and numbers, I get an error. Is this a plug-in problem? My code...
Is it possible to use degrees for sin,cos and tan ? sin(90) = 1 I figured out we can just use radian...
It just doesn't work right, I have tried to do the calculation of various percentages but it doesn't work right, it gives wrong result. For example if I put something...
Currently we have only the option to create custom functions and use them on manually created expressions. If we want to use them on a parse expression, it is currently...
Hi, I tried to make a simple calculator using this library. But I am facing an issue with a very simple expression. I tried to multiple `2.3` with `3` and...
Any mathematical expression that state a literal positive number with `+` doesn't parse, like: - `7+(+7)` - `+7` - `7*+7` - `cos(+7)` All above throws this exception: ``` The following...
I'm interested in how to use the Evaluttion type Interval, but the documentation is lacking examples of this type of evalution and for vectors