Tan: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
m (moved Tan to TAN)
No edit summary
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>

Revision as of 08:57, 1 February 2012

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