2023-10-17 23:36:14 +08:00
|
|
|
[discrete]
|
2023-08-02 23:12:10 +08:00
|
|
|
[[esql-atan2]]
|
|
|
|
=== `ATAN2`
|
2023-12-19 22:59:02 +08:00
|
|
|
|
|
|
|
*Syntax*
|
|
|
|
|
2023-08-28 23:17:04 +08:00
|
|
|
[.text-center]
|
|
|
|
image::esql/functions/signature/atan2.svg[Embedded,opts=inline]
|
2023-08-02 23:12:10 +08:00
|
|
|
|
2023-12-19 22:59:02 +08:00
|
|
|
*Parameters*
|
|
|
|
|
|
|
|
`y`::
|
|
|
|
Numeric expression. If `null`, the function returns `null`.
|
|
|
|
|
|
|
|
`x`::
|
|
|
|
Numeric expression. If `null`, the function returns `null`.
|
|
|
|
|
|
|
|
*Description*
|
|
|
|
|
2024-01-25 23:32:24 +08:00
|
|
|
The {wikipedia}/Atan2[angle] between the positive x-axis and the ray from the
|
|
|
|
origin to the point (x , y) in the Cartesian plane, expressed in radians.
|
2023-12-19 22:59:02 +08:00
|
|
|
|
|
|
|
*Supported types*
|
|
|
|
|
|
|
|
include::types/atan2.asciidoc[]
|
|
|
|
|
|
|
|
*Example*
|
2023-08-02 23:12:10 +08:00
|
|
|
|
|
|
|
[source.merge.styled,esql]
|
|
|
|
----
|
|
|
|
include::{esql-specs}/floats.csv-spec[tag=atan2]
|
|
|
|
----
|
|
|
|
[%header.monospaced.styled,format=dsv,separator=|]
|
|
|
|
|===
|
|
|
|
include::{esql-specs}/floats.csv-spec[tag=atan2-result]
|
|
|
|
|===
|