aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBruce Wells <brucekwells@gmail.com>2018-11-26 18:06:26 +0300
committerGitHub <noreply@github.com>2018-11-26 18:06:26 +0300
commitd50b6659270e6ad9e654d44e1eed8cebd8d04f0d (patch)
tree221aef8b0d2c57e3cd8eb62d6b25e548279fd48b /README.md
parentaa12a41b1bdaa4c780f45043c020bd82fd70f02c (diff)
Fixed Lexor to correctly generate reverse polish notation (#33)v0.6
* Updated from NeonXP/MathExecutor * Fixed function in () block issue
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index f5bf318..c15dccb 100644
--- a/README.md
+++ b/README.md
@@ -3,18 +3,19 @@
A simple math expressions calculator
## Features:
-* Built in support for +, -, *, / and power (^) operators
+* Built in support for +, -, *, / and power (^) operators plus ()
* Support for user defined operators
* Support for user defined functions
-* Unlimited varable length
+* Unlimited varable name lengths
* String support, as function parameters or as evaluated by PHP
* Exceptions on divide by zero, or treat as zero
* Unary Minus
+* Pi ($pi) and Euler's number ($e) support to 11 decimal places
## Install via Composer:
Stable branch
```
-composer require "nxp/math-executor" "dev-master"
+composer require "nxp/math-executor"
```
Dev branch (currently unsupported)