Calculates the arc tangent.
Atan(x)
(f) x: floating point number whose arc tangent is desired.
(f) The Atan function returns the arc tangent result of x.
The Atan function calculates the arc tangent of x, which returns a value in the range -p/2 to p/2 radians. If x is 0 a domain error occurs.
real=AskLine("ArcTan", "Enter a real number ", "34.6", 0) answer=Atan(real) Message("ArcTan of %real% is", answer)