Sin
Returns the sine of the specified angle.
Syntax
SIN(number,[isRadians])
The SIN function syntax has the following arguments:
- number (Required). The angle in radians or which you want the sine.
- isRadians Optional. Will convert it to Radians.
Example
Formula | Result |
---|---|
=Sin(2) | 0.034899496702501 |
=Sin(2 * (3.141592653589793 / 180), "true") | 0.034899496702501 |
Updated almost 2 years ago