Skip to main content
Version: 0.0.1

ATAN

Categories: Math

ATAN

Computes the Arctangent (inverse Tangent) of a value

Syntax

ATAN(inputValue FLOAT) → FLOAT

  • inputValue: Floating-point input value, in the range (negative-infinity:positive-infinity)

Examples

{{< codeheader "ATAN example" >}}

SELECT ATAN(0)
-- 0.0

{{< codeheader "ATAN example" >}}

SELECT ATAN(1)
-- 0.7853981633974483

{{< codeheader "ATAN example" >}}

SELECT ATAN(-1)
-- -0.7853981633974483

{{< codeheader "ATAN example" >}}

SELECT ATAN(19564.7)
-- 1.5707452143321894