Atn: Difference between revisions

From NSB App Studio
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...")
 
 
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
ATN(''number'')
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.''  


'''Description'''
Atn(''number'')


== 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.


To convert degrees to radians, multiply degrees by π/180. To convert radians to degrees, multiply radians by 180/π.
To convert degrees to radians, multiply degrees by π/180. To convert radians to degrees, multiply radians by 180/π.


'''Example'''
== Example (BASIC) ==


<pre>
<pre>
Rem Atn Example
'Atn calculates the arctangent of a number


REM ATN Example
Dim Pi
'ATN calculates the arctangent of a number
Pi = Atn(1) * 4
DIM Pi
Print "The value of pi is " & Pi
Pi = ATN(1) * 4
PRINT "The value of pi is " & Pi
</pre>
</pre>


'''Output'''
== Output ==


<pre>
<pre>
The value of pi is 3.141592653589793
</pre>
== Related Items ==
[[cos|Cos]], [[sin|Sin]], [[tan|Tan]]


The value of pi is 3.141593
[[Category:Language Reference]]
</pre>


'''Related Items'''
[[Category:Math]]


[[cos|COS]], [[sin|SIN]], [[tan|TAN]]
[[Category:BASIC Functions]]

Latest revision as of 15:19, 25 March 2019

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

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 (BASIC)

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.141592653589793

Related Items

Cos, Sin, Tan