ASIN function
From Apache OpenOffice Wiki
< Documentation | How Tos
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Trigonometric
Hyperbolic
Rounding and remainders
Logarithm/Powers
Bessel functions
Miscellaneous
ASIN
Returns the inverse sine (the arc sine) of a number.
Syntax:
ASIN(number)
- returns the inverse trigonometric sine of number, in other words the angle (in radians) whose sine is number. The angle returned is between -PI/2 and +PI/2.
- To return the angle in degrees, use the DEGREES function.
Example:
ASIN(0)
- returns 0.
ASIN(1)
- returns 1.5707963267949 (PI/2 radians).
DEGREES(ASIN(0.5))
- returns 30. The sine of 30 degrees is 0.5.
See Also