Cos: Difference between revisions
Jump to navigation
Jump to search
Created page with "COS(''number'') '''Description''' COS calculates the cosine of a number expressing an angle in radians. The required parameter, ''number'', is any numeric expression. The va..." |
|||
(9 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.'' | |||
'' | Cos(''number'') | ||
== Description == | |||
Cos calculates the cosine 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 that can range from -1 to 1. | |||
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 (Basic) == | |||
<pre> | <pre> | ||
Rem Cos Example | |||
' | 'Cos calculates the cosine of a number | ||
Print "The cosine of 0 is " & Cos(0) | |||
</pre> | </pre> | ||
== Output == | |||
<pre> | <pre> | ||
Line 21: | Line 24: | ||
</pre> | </pre> | ||
== Related Items == | |||
[[sin|Sin]], [[tan|Tan]] | |||
[[Category:Language Reference]] | |||
[[Category:Math]] | |||
[[ | [[Category:BASIC Functions]] |
Latest revision as of 15:20, 25 March 2019
This function is for BASIC compatibility. It is not available in pure JavaScript projects.
Cos(number)
Description
Cos calculates the cosine 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 that can range from -1 to 1.
To convert degrees to radians, multiply degrees by π/180. To convert radians to degrees, multiply radians by 180/π.
Example (Basic)
Rem Cos Example 'Cos calculates the cosine of a number Print "The cosine of 0 is " & Cos(0)
Output
The cosine of 0 is 1