Sin: Difference between revisions
Jump to navigation
Jump to search
Created page with "SIN(''number'') '''Description''' SIN calculates the sine of a number expressing an angle in radians. The required parameter, number, is any numeric expression. The value re..." |
No edit summary |
||
Line 3: | Line 3: | ||
'''Description''' | '''Description''' | ||
SIN calculates the sine 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. | SIN calculates the sine 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/π. |
Revision as of 19:40, 8 July 2012
SIN(number)
Description
SIN calculates the sine 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 SIN Example 'SIN calculates the sine of a number PRINT "The sine of 0 is " & SIN(0)
Output
The sine of 0 is 0
Related Items