Atn: Difference between revisions
Jump to navigation
Jump to search
Created page with "ATN(''number'') '''Description''' ATN returns the arctangent of a number in radians. The required parameter, ''number'', is any numeric expression. To convert degrees to r..." |
No edit summary |
||
Line 2: | Line 2: | ||
'''Description''' | '''Description''' | ||
ATN returns the arctangent of a number in radians. The required parameter, ''number'', is any numeric expression. | ATN returns the arctangent of a number in radians. The required parameter, ''number'', is any numeric expression. |
Revision as of 03:38, 29 June 2012
ATN(number)
Description
ATN returns the arctangent of a number in radians. The required parameter, number, is any numeric expression.
To convert degrees to radians, multiply degrees by π/180. To convert radians to degrees, multiply radians by 180/π.
Example
REM ATN Example 'ATN calculates the arctangent of a number DIM Pi Pi = ATN(1) * 4 PRINT "The value of pi is " & Pi
Output
The value of pi is 3.141593
Related Items