COS
Returns the cosine of x
, where x
is given in radians.
Analyze Syntax
func.cos( <x> )
Analyze Examples
func.cos(func.pi())
┌─────────────────────┐
│ func.cos(func.pi()) │
├─────────────────────┤
│ -1 │
└─────────────────────┘
SQL Syntax
COS( <x> )
SQL Examples
SELECT COS(PI());
┌───────────┐
│ cos(pi()) │
├───────────┤
│ -1 │
└───────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)