* *
*
* * News
 • Daily news
 • Archived news

Columns
 • WildCard
 • Qbasic Articles
 • QB Comic!

Learning center
 • QB Books
 • Qbasic Lessons!
 • Qbasic FAQ
 • Newbies Section
 • Qbasic Tutorials

* *
*
*
*
*  
.ATN Function Details.

  QuickSCREEN      Details      Example      Contents      Index
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
ATN Function Details
Syntax
  ATN(numeric-expression)
 
The numeric-expression can be of any numeric type.
 
ATN is evaluated by default in single precision. If numeric-expression is
a double-precision value, ATN is evaluated in double precision.
 
The result is given in radians and is in the range -ã/2 to ã/2 radians,
where ã = 3.141593. ã/2 radians equals 90 degrees.
 
You can convert an angle measurement from degrees to radians by
multiplying the degrees by ã/180, where ã = 3.141593.
 
To convert a radian value to degrees, multiply it by 57.2958.
* * ** * * * *