Provide the arctangent of a number.
SELECT ATAN(2.5); |
The ATAN() function calculates the arctangent of one or two numbers.
ATAN(number) |
OR:
ATAN(a, b) |
Parameter |
Description |
number |
Could you provide more context or specify what you’d like to rephrase? |
a, b |
Reword: “Two numerical values for computing the arctangent of” |
Works in: | From MySQL 4.0 |
Calculate the arctangent of two values and return the result.
SELECT ATAN(–0.8, 2); |