Sin: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Add javascript snippet |
||
Line 7: | Line 7: | ||
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 (Basic) == | ||
<pre> | <pre> | ||
Line 13: | Line 13: | ||
'Sin calculates the sine of a number | 'Sin calculates the sine of a number | ||
Print "The sine of 0 is " & Sin(0) | Print "The sine of 0 is " & Sin(0) | ||
</pre> | |||
== Example (JavaScript) == | |||
<pre> | |||
// Sin Example | |||
/* Sin calculates the sine of a number */ | |||
NSB.Print("The sine of 0 is " + Math.sin(0)); | |||
</pre> | </pre> | ||
Revision as of 22:32, 19 May 2013
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)
Example (JavaScript)
// Sin Example /* Sin calculates the sine of a number */ NSB.Print("The sine of 0 is " + Math.sin(0));
Output
The sine of 0 is 0