COT()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Xpand
Topics on this page:
Overview
Returns the cotangent of the given argument.
USAGE
COT(expr)
Argument Name | Description |
|---|---|
| The angle in radians |
DETAILS
COT() is a trigonometric function that returns the cotangent of the argument.
The argument is an angle expressed in radians.
A NULL is returned if the argument is NULL.
EXAMPLES
SELECT COT(1);
+------------------+
| COT(1) |
+------------------+
| 0.64209261593433 |
+------------------+
