diff options
author | diman3210 <diman-3210@mail.ru> | 2020-10-20 01:48:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 01:48:30 +0300 |
commit | e28c1bf9e7683e3b1adc3f487c3a993c0d8b2b2d (patch) | |
tree | 3351aecda276f666b821a57ed79b0e5d8d95f9d3 /README.md | |
parent | d9eb39e38d090eaf00904a37d04aef6db4ceadac (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.md | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -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: |