ATAN() returns the arc tangent (inverse tangent) of a number in radians. The arc tangent is the angle whose tangent is the specified number. Unlike ASIN() and ACOS(), ATAN() accepts any real number as input.
ATAN(number)
ATAN() returns a numeric value in radians between -π/2 and π/2 (approximately -1.5708 to 1.5708)
ATAN(0) = 0
ATAN(TAN(1)) = 1
ATAN(PI()) = 1.2626
ATAN(1) = 0.7854 (π/4 radians)
ATAN(-1) = -0.7854 (-π/4 radians)
ATAN(INFINITY) = 1.5708 (π/2 radians)