Tan: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
TAN(''number'')
Tan(''number'')


'''Description'''
== Description ==


TAN calculates the tangent of a number expressing an angle in radians. The required parameter, ''number'', is any numeric expression. The value returned is a double-precision floating-point number.
Tan calculates the tangent of a number expressing an angle in radians. The required parameter, ''number'', is any numeric expression. The value returned is a double-precision floating-point number.


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


<pre>
<pre>
REM TAN Example
Rem Tan Example
'TAN calculates the tangent of a number
'Tan calculates the tangent of a number
PRINT "The tangent of 0 is " & TAN(0)
Print "The tangent of 0 is " & Tan(0)
</pre>
</pre>


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


<pre>
<pre>
Line 21: Line 21:
</pre>
</pre>


'''Related Items'''
== Related Items ==


[[cos|COS]], [[sin|SIN]]
[[cos|COS]], [[sin|SIN]]
[[Category:Language Reference]]

Revision as of 03:52, 17 August 2012

Tan(number)

Description

Tan calculates the tangent of a number expressing an angle in radians. The required parameter, number, is any numeric expression. The value returned is a double-precision floating-point number.

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

Example

Rem Tan Example
'Tan calculates the tangent of a number
Print "The tangent of 0 is " & Tan(0)

Output

The tangent of 0 is 0

Related Items

COS, SIN