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