ATAN
Returns the arc tangent of x
, that is, the value whose tangent is x
.
Analyze Syntax
func.atan( <x> )
Analyze Examples
func.atan(-2)
┌─────────────────────┐
│ func.atan((- 2)) │
├─────────────────────┤
│ -1.1071487177940906 │
└─────────────────────┘
SQL Syntax
ATAN( <x> )
SQL Examples
SELECT ATAN(-2);
┌─────────────────────┐
│ atan((- 2)) │
├─────────────────────┤
│ -1.1071487177940906 │
└─────────────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)