Sin

From NSB App Studio
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

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 (Basic)

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

Cos, Tan