ATAN
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:
For : - Range: or - Domain:
Sample Source Pattern
Syntax
ATAN( expression )Arguments
expression: Numeric float expression, or a numeric type which could be converted to float.
Return Type
Numeric float expression between and .
Examples
SELECT ATAN(-30);ATAN(-30) |
-------------------+
-1.5374753309166493|Last updated