ATAN
Descriptionβ
Returns the arctangent of x
, where x
is in radians.
Syntaxβ
ATAN(<x>)
Parametersβ
Parameter | Description |
---|---|
<x> | The value for which the atan value is to be calculated |
Return Valueβ
The atan value of parameter x
.
Exampleβ
select atan(0);
+-----------+
| atan(0.0) |
+-----------+
| 0 |
+-----------+
select atan(2);
+--------------------+
| atan(2.0) |
+--------------------+
| 1.1071487177940904 |
+--------------------+