Cos: Difference between revisions

From NSB App Studio
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...")
 
No edit summary
Line 1: Line 1:
COS(''number'')
Cos(''number'')


'''Description'''
== 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.
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'''
== Example ==


<pre>
<pre>
REM COS Example
REM Cos Example
'COS calculates the cosine of a number
'Cos calculates the cosine of a number
PRINT "The cosine of 0 is " & COS(0)
PRINT "The cosine of 0 is " & Cos(0)
</pre>
</pre>


'''Output'''
== Output ==


<pre>
<pre>
Line 21: Line 21:
</pre>
</pre>


'''Related Items'''
== Related Items ==


[[sin|SIN]], [[tan|TAN]]
[[sin|SIN]], [[tan|TAN]]
[[Category:Language Reference]]

Revision as of 20:32, 8 August 2012

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

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

Related Items

SIN, TAN