ATAN()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
Returns the arc tangent of the given argument.
EXAMPLES
SELECT ATAN(42);
+--------------------+
| ATAN(42) |
+--------------------+
| 1.5469913006098266 |
+--------------------+
SELECT ATAN(-1);
+---------------------+
| ATAN(-1) |
+---------------------+
| -0.7853981633974483 |
+---------------------+
SELECT ATAN(-1,1);
+---------------------+
| ATAN(-1,1) |
+---------------------+
| -0.7853981633974483 |
+---------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.