Difference between revisions of "MC-Basic:ATN"
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{Languages|MC-Basic:ATN}} | ||
{{MC-Basic | {{MC-Basic | ||
|SHORT FORM= | |SHORT FORM= | ||
Line 4: | Line 5: | ||
|SYNTAX= | |SYNTAX= | ||
− | Atn('' | + | Atn(<''expression''>) |
|AVAILABILITY= | |AVAILABILITY= | ||
Line 28: | Line 29: | ||
|LIMITATIONS= | |LIMITATIONS= | ||
− | Read | + | Read only |
|EXAMPLE= | |EXAMPLE= | ||
Line 42: | Line 43: | ||
|SEE ALSO= | |SEE ALSO= | ||
− | * [[ | + | * [[MC-Basic:ATAN2|ATAN2]] |
− | * [[ | + | * [[MC-Basic:TAN|TAN]] |
− | [[Category | + | [[Category:MC-Basic:Arithmetic Functions|ATN]] |
}} | }} |
Latest revision as of 05:39, 17 April 2017
Language: | English • 中文(简体) |
---|
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 ±π/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