Get arctangent of a number
=ATAN(number)
| Parameter | Description |
|---|---|
number |
The value to get the inverse tangent of. |
The Excel ATAN function returns the inverse tangent or arc-tangent of a number. In geometric terms, the function returns the angle of a right-triangle
=ATAN(3/3) // Returns 0.785 radians
ATAN returns the angle in radians. To convert the result from radians to degrees, multiply the result by 180/PI() or use the DEGREES function. For exa
=ATAN(1)*180/PI() // Returns 45 degrees
=DEGREES(ATAN(1)) // Returns 45 degrees
The ATAN2 function is useful for getting the angle corresponding to a point in the Cartesian Coordinate System which forms the shape of a right-triang
=ATAN(y/x)=ATAN2(x,y)