Tan: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Add javascript snippet |
||
Line 7: | Line 7: | ||
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> | ||
Line 13: | Line 13: | ||
'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> | |||
== Example (JavaScript) == | |||
<pre> | |||
// Tan Example | |||
/* Tan calculates the tangent of a number */ | |||
NSB.Print("The tangent of 0 is " + Math.tan(0)); | |||
</pre> | </pre> | ||
Revision as of 18:53, 19 May 2013
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)
Example (JavaScript)
// Tan Example /* Tan calculates the tangent of a number */ NSB.Print("The tangent of 0 is " + Math.tan(0));
Output
The tangent of 0 is 0