Cos

From NSB App Studio
Revision as of 04:21, 29 June 2012 by Brendon (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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