A module containing functions for common mathematical operations.
Returns the arc cosine of the argument, the result being in the range zero to +π radians.
$arg? | The input number |
Returns the arc sine of the argument, the result being in the range -π/2 to +π/2 radians.
$arg? | The input number |
Returns the arc tangent of the argument, the result being in the range -π/2 to +π/2 radians.
$arg? | The input number |
Returns the angle in radians subtended at the origin by the point on a plane with coordinates (x, y) and the positive x-axis, the result being in the range -π to +π.
$y | The y coordinate |
$x | The x coordinate |
Returns the cosine of the argument, expressed in radians.
$arg? | The input number |
Calculates e (the Euler Constant) raised to the power of $arg
$arg? | The input number |
Calculates 10 raised to the power of $arg
$arg? | The input number |
Returns the natural logarithm of the argument.
$arg? | The input number |
Returns the base-ten logarithm of the argument.
$arg? | The input number |
Returns the value of pi.
Returns the result of raising the first argument to the power of the second.
$value? | The value |
$power | The power to raise the value to |
Returns the sine of the argument, expressed in radians.
$arg? | The input number |
Returns the non-negative square root of the argument.
$arg? | The input number |
Returns the tangent of the argument, expressed in radians.
$arg? | The radians |