Categories: Math
COT
Computes the cotangent of a value in radians.
Syntax
COT(numeric_expression NUMERIC) → FLOAT
- numeric_expression: The number in radians. This must be DOUBLE, INTEGER, or FLOAT.
Examples
COT exampleSELECT COT(0)
-- 1.0
SELECT COT(1.0)
-- 0.5403023058681398
SELECT COT(-1)
-- 0.5403023058681398
Was this page helpful?
Glad to hear it! Thank you for your feedback.
Sorry to hear that. Thank you for your feedback.