Sin: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
SIN(''number'')
Sin(''number'')


'''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/π.


'''Example'''
== Example ==


<pre>
<pre>
REM SIN Example
Rem Sin Example
'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>
</pre>


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


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


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


[[cos|COS]], [[tan|TAN]]
[[cos|COS]], [[tan|TAN]]
[[Category:Language Reference]]

Revision as of 03:17, 17 August 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

COS, TAN