Tan: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
m (moved Tan to TAN)
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
  Tan(X)
  TAN(<x>)


The '''Tan''' [[internal function]] is a trigonometric function that calculates the tangent of X in radians.
The '''Tan''' [[internal function]] is a mathematical trigonometric function that calculates the tangent of X in radians.
 
====Example====
 
00010 print TAN(PI/2) ! in mathematics, TAN(PI/2) = infinity, output should be a very large number
 
Output:
 
6.189863256179240E+14


====See Also====
====See Also====
*[[ATN]]
*[[ATN]]
*[[CoS]]
*[[CoS]]
Line 9: Line 18:
*[[Log]]
*[[Log]]
*[[Pi]]
*[[Pi]]
*[[Sin]]
*[[SIN]]


<noinclude>
<noinclude>
[[Category:Internal Functions]]
[[Category:Internal Functions]]
</noinclude>
</noinclude>

Latest revision as of 03:16, 22 May 2014

TAN(<x>)

The Tan internal function is a mathematical trigonometric function that calculates the tangent of X in radians.

Example

00010 print TAN(PI/2) ! in mathematics, TAN(PI/2) = infinity, output should be a very large number

Output:

6.189863256179240E+14

See Also