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
Copy file name to clipboardExpand all lines: README.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,6 @@ Math expression
3
3
4
4
Safely evaluate math and boolean expressions.
5
5
6
-
This class can be used to safely evaluate mathematical expressions.
7
-
The class can take an expression in a text string and evaluate it by replacing values of variables and calculating the results of mathematical functions and operations.
8
-
It supports implicit multiplication, multivariable functions and nested functions.
9
-
It can be used to evaluate expressions from untrusted sources. It provides robust error checking and only evaluates a limited set of functions.
10
-
It could be used to generate graphs from expressions of formulae.
11
-
12
6
# Install
13
7
14
8
```
@@ -47,6 +41,13 @@ It could be used to generate graphs from expressions of formulae.
47
41
```
48
42
49
43
# DESCRIPTION
44
+
45
+
This class can be used to safely evaluate mathematical expressions.
46
+
The class can take an expression in a text string and evaluate it by replacing values of variables and calculating the results of mathematical functions and operations.
47
+
It supports implicit multiplication, multivariable functions and nested functions.
48
+
It can be used to evaluate expressions from untrusted sources. It provides robust error checking and only evaluates a limited set of functions.
49
+
It could be used to generate graphs from expressions of formulae.
50
+
50
51
Use the Expression class when you want to evaluate mathematical or boolean
51
52
expressions from untrusted sources. You can define your own variables and
52
53
functions, which are stored in the object. Try it, it's fun!
0 commit comments