sin(X)
Returns the sine of the given value.
Syntax
sin(X)
Input
Argument | Type | Description |
---|---|---|
X |
any numeric type | A numeric value |
Return Value
Returns a decimal number corresponding to the sine of
X
.
Note:
X
is a measurement in radians.If X
is N/A, the result is N/A.
Sample Usage
X |
sin(X) |
---|---|
1.571 | 1 |
0.7854 | 0.7071 |
0.0785 | 0.0784 |
-0.0785 | -0.0784 |
NA | NA |