ES|QL ATAN function
number-
Numeric expression. If
null, the function returnsnull.
Returns the arctangent of the input numeric expression as an angle, expressed in radians.
| number | result |
|---|---|
| double | double |
| integer | double |
| long | double |
| unsigned_long | double |
ROW a=12.9
| EVAL atan=ATAN(a)
| a:double | atan:double |
|---|---|
| 12.9 | 1.4934316673669235 |