Collections:
COT() - Cotangent Trigonometric Value
How to calculate the cotangent trigonometric value of a given angle using the COT() function?
✍: FYIcenter.com
COT(X) is a MySQL built-in function that
calculates the cotangent trigonometric value of a given angle in radians.
For example:
SELECT COT(0.1), COT(1.57), COT(3.14); -- +-------------------+-----------------------+--------------------+ -- | COT(0.1) | COT(1.57) | COT(3.14) | -- +-------------------+-----------------------+--------------------+ -- | 9.966644423259238 | 0.0007963269632231926 | -627.8823975869132 | -- +-------------------+-----------------------+--------------------+
Reference information of the COT() function:
COT(X): val Returns the cotangent of X, where X is given in radians. Arguments, return value and availability: X: Required. The input angle in radians. val: Return value. The cotangent of X. Available since MySQL 4.0.
Related MySQL functions:
⇒ DEGREES() - Radians to Degrees
⇐ COS() - Cosine Trigonometric Value
2023-11-15, 1230🔥, 0💬
Popular Posts:
What is dba.FYIcenter.com Website about? dba.FYIcenter.com is a Website for DBAs (database administr...
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...
How To Convert Numeric Expression Data Types using the CAST() Function in SQL Server Transact-SQL? I...
What To Do If the StartDB.bat Failed to Start the XE Instance in Oracle? If StartDB.bat failed to st...
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...