Mengembalikan invers sinus suatu nilai dalam radian.
=ASIN(number)
| Parameter | Deskripsi |
|---|---|
number |
The value to get the inverse sine of. The number must be between -1 and 1 inclusive. |
The ASIN function, also called arc-sine, returns the inverse sine of a value. The input number must be between -1 and 1, inclusive. Geometrically, giv
=ASIN(0.5) // Returns 0.524 radians
To convert the result from radians to degrees, multiply the result by 180/PI() or use the DEGREES function. For example, to convert the result of ASIN
=ASIN(0.5)*180/PI() // Returns 30 degrees
=DEGREES(ASIN(0.5)) // Returns 30 degrees