Description
Function that returns the arctangent in radians of the number sent as a parameter (ATAN in Transact-SQL).
The arctangent is the inverse function of the tangent, summarized in the next definition:
y=arctan−1⇔x=tan(x)
For y=tan−1(x):
- Range: −2π⩽y⩽2π or −90∘⩽y⩽90∘
- Domain: R
Sample Source Pattern
Syntax
Arguments
expression
: Numeric float expression, or a numeric type which could be converted to float.
Return Type
Numeric float expression between −2π and 2π.
Examples
ATAN(-30) |
-------------------+
-1.5374753309166493|