ATAN

Learn how to use the ATAN numeric function in PlaidCloud Lakehouse. Returns the arc tangent of x, that is, the value whose tangent is x. Includes syntax and...

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 
└─────────────────────┘