diff options
author | Bruce Wells <brucekwells@gmail.com> | 2018-11-26 18:06:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-26 18:06:26 +0300 |
commit | d50b6659270e6ad9e654d44e1eed8cebd8d04f0d (patch) | |
tree | 221aef8b0d2c57e3cd8eb62d6b25e548279fd48b /README.md | |
parent | aa12a41b1bdaa4c780f45043c020bd82fd70f02c (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.md | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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) |