Dapatkan sinus sudut yang diberikan dalam radian.
=SIN(number)
| Parameter | Deskripsi |
|---|---|
number |
The angle in radians for which you want the sine. |
The SIN function returns the sine of an angle provided in radians. In geometric terms, the sine of an angle returns the ratio of a right triangle's op
=SIN(PI()/6) // Returns 0.5
To supply an angle to SIN in degrees, multiply the angle by PI()/180 or use the RADIANS function to convert to radians. For example, to get the SIN of
=SIN(30*PI()/180)
=SIN(RADIANS(30))