aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authordiman3210 <diman-3210@mail.ru>2020-10-20 01:48:30 +0300
committerGitHub <noreply@github.com>2020-10-20 01:48:30 +0300
commite28c1bf9e7683e3b1adc3f487c3a993c0d8b2b2d (patch)
tree3351aecda276f666b821a57ed79b0e5d8d95f9d3 /README.md
parentd9eb39e38d090eaf00904a37d04aef6db4ceadac (diff)
add new functions and aliases to the old functions (#76)
* add new functions and aliases to the old functions * add tests for new functions
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 12 insertions, 6 deletions
diff --git a/README.md b/README.md
index f88e5e3..f589116 100644
--- a/README.md
+++ b/README.md
@@ -34,17 +34,22 @@ echo $executor->execute('1 + 2 * (2 - (4+10))^2 + sin(10)');
## Functions:
Default functions:
* abs
-* acos
+* acos (arccos)
* acosh
-* asin
-* atan (atn)
+* arcctg (arccot, arccotan)
+* arcsec
+* arccsc (arccosec)
+* asin (arcsin)
+* atan (atn, arctan, arctg)
* atan2
* atanh
* avg
* bindec
* ceil
* cos
+* cosec (csc)
* cosh
+* ctg (cot, cotan, cotg, ctn)
* decbin
* dechex
* decoct
@@ -57,8 +62,8 @@ Default functions:
* hypot
* if
* intdiv
-* log
-* log10
+* log (ln)
+* log10 (lg)
* log1p
* max
* min
@@ -67,10 +72,11 @@ Default functions:
* pow
* rad2deg
* round
+* sec
* sin
* sinh
* sqrt
-* tan (tn)
+* tan (tn, tg)
* tanh
Add custom function to executor: