Tan: Difference between revisions
Jump to navigation
Jump to search
Add javascript snippet |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.'' | |||
Tan(''number'') | Tan(''number'') | ||
Line 13: | Line 15: | ||
'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> | ||
Line 36: | Line 30: | ||
[[Category:Math]] | [[Category:Math]] | ||
[[Category:BASIC Functions]] |
Latest revision as of 15:37, 25 March 2019
This function is for BASIC compatibility. It is not available in pure JavaScript projects.
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 (Basic)
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