ATAN (Lakehouse v1)
Returns the arc tangent of x, that is, the value whose tangent is x.
Analyze Syntax
Section titled “Analyze Syntax”func.atan( <x> )Analyze Examples
Section titled “Analyze Examples”func.atan(-2)
┌─────────────────────┐│ func.atan((- 2)) │├─────────────────────┤│ -1.1071487177940906 │└─────────────────────┘SQL Syntax
Section titled “SQL Syntax”ATAN( <x> )SQL Examples
Section titled “SQL Examples”SELECT ATAN(-2);
┌─────────────────────┐│ atan((- 2)) │├─────────────────────┤│ -1.1071487177940906 │└─────────────────────┘