Difference between revisions of "MC-Basic:ATN"
(Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= Atn(''<expression>'') |AVAILABILITY= All versions |DESCRIPTION= ATN returns the inverse tangent of the expression in radians. The expression …') |
m (1 revision) |
(No difference)
|
Revision as of 16:09, 13 December 2010
ATN returns the inverse tangent of the expression in radians. The expression is the ratio of the length on the y-axis to the length on the x-axis, and the result is in the range +/- p/2 radians.
Syntax
Atn(<expression>)
Availability
All versions
Type
Double
Range
+/- MaxDouble
Scope
Configuration, Task or Terminal
Limitations
Read-Only
Examples
Program
Dim x as double
Dim y as double
Dim Theta as double
x=1
y=2
Theta=ATN(y/x)
End Program