15 lines
280 B
Markdown
15 lines
280 B
Markdown
|
% This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
|
||
|
|
||
|
**Example**
|
||
|
|
||
|
```esql
|
||
|
ROW y=12.9, x=.6
|
||
|
| EVAL atan2=ATAN2(y, x)
|
||
|
```
|
||
|
|
||
|
| y:double | x:double | atan2:double |
|
||
|
| --- | --- | --- |
|
||
|
| 12.9 | 0.6 | 1.5243181954438936 |
|
||
|
|
||
|
|