-
Notifications
You must be signed in to change notification settings - Fork 5
Functions
Santhosh edited this page Jan 2, 2020
·
5 revisions
| Description | Function | Example |
|---|---|---|
| Square root | sqrt | sqrt(4) |
| Cube root | cbrt | cbrt(12) |
| Absolute value | abs | abs(-4) |
| Logarithm | log | log(10) |
| Natural logarithm | ln | ln(10) |
| Rounding | round | round(3.14) |
| Ceiling | ceil | ceil(1.67) |
| Flooring | floor | floor(1.23) |
| Sum of start...end | sigma | sigma(0, 100) |
| Cosine | cos | cos(0) |
| Sine | sin | sin(10) |
| Tangent | tan | tan(50) |
| Inverse cosine | acos | acos(7) |
| Inverse sine | asin | asin(89.01) |
| Inverse tangent | atan | atan(45) |
| Hyperbolic cosine | cosh | cosh(34) |
| Hyperbolic sine | sinh | sinh(9) |
| Hyperbolic tangent | tanh | tanh(45) |
| Hyperbolic inverse cosine | acosh | acosh(34) |
| Hyperbolic inverse sine | asinh | asinh(9) |
| Hyperbolic inverse tangent | atanh | atanh(45) |