Description
The Sin() function returns the sine of a specified number (angle).
This function has the form:
Sin(number)
Parameter | Description |
---|---|
number | (required) A valid numeric expression that expresses an angle in radians |
Examples
The following example shows the basic use of this function:
Msgbox(Sin(47))
Msgbox(Sin(-47))
This produces the following result (each line in a separate pop-up message box):
0.123573122745224
-0.123573122745224
Miscellaneous Information
Supported in Version: | 1.0 |
---|