Subcommand | Description | Syntax |
e | Returns Euler's number (2.718281828459045) | e() |
pi | Returns the value of pi (3.141592653589793) | pi() |
sin | Calculates the sine of a number in radians | sin(<expr>) |
cos | Calculates the cosine of a number in radians | cos(<expr>) |
tan | Calculates the tangent of a number in radians | tan(<expr>) |
sinh | Calculates the hyperbolic sine of a number in radians | sinh(<expr>) |
cosh | Calculates the hyperbolic cosine of a number in radians | cosh(<expr>) |
tanh | Calculates the hyperbolic tangent of a number in radians | tanh(<expr>) |
asin | Calculates the arcsine of a number in radians | asin(<expr>) |
acos | Calculates the arccosine of a number in radians | acos(<expr>) |
atan | Calculates the arctangent of a number in radians | atan(<expr>) |
asinh | Calculates the inverse hyperbolic sine of a number in radians | asinh(<expr>) |
acosh | Calculates the inverse hyperbolic cosine of a number in radians | acosh(<expr>) |
atanh | Calculates the inverse hyperbolic tangent of a number in radians | atanh(<expr>) |
exp | Calculates the base e exponential of a number (equivalent to e^x ) | exp(<expr>) |
ln | Calculates the natural logarithm (base e) of a number | ln(<expr>) |
sqrt | Calculates the square root of a number | sqrt(<expr>) |
abs | Calculates the absolute value of a number | abs(<expr>) |
ceil | Calculates the ceiling (next highest integer) of a number | ceil(<expr>) |
floor | Calculates the floor (next lowest integer) of a number | floor(<expr>) |
log | Calculates the logarithm of a number in the provided base | log(<expr>, <expr>) |
pow | Raises a number to the power of another number | pow(<expr>, <expr>) |
nrt | Calculates the nth root of a number | nrt(<expr>, <expr>) |
add | Adds 2 numbers together | add(<expr>, <expr>) |
sub | Subtracts one number from another | sub(<expr>, <expr>) |
mul | Multiplies two numbers | mul(<expr>, <expr>) |
div | Divides one number by another | div(<expr>, <expr>) |
| eval e=e()
| eval pi=pi()
| eval sin=sin(<expr>)
| eval cos=cos(<expr>)
| eval tan=tan(<expr>)
| eval sinh=sinh(<expr>)
| eval cosh=cosh(<expr>)
| eval tanh=tanh(<expr>)
| eval asin=asin(<expr>)
| eval acos=acos(<expr>)
| eval atan=atan(<expr>)
| eval asinh=asinh(<expr>)
| eval acosh=acosh(<expr>)
| eval atanh=atanh(<expr>)
| eval exp=exp(<expr>)
| eval ln=ln(<expr>)
| eval sqrt=sqrt(<expr>)
| eval abs=abs(<expr>)
| eval ceil=ceil(<expr>)
| eval floor=floor(<expr>)
| eval result=log(<expr>, <base>)
| eval result=pow(<expr>, <exponent>)
| eval result=nrt(<expr>, <degree>)
| eval result=add(<expr>, <expr>)
| eval result=sub(<expr>, <expr>)
| eval result=mul(<expr>, <expr>)
| eval result=div(<expr>, <expr>)