You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chung Leong edited this page Jan 10, 2022
·
8 revisions
asin - Arc sine
float asin ( float $x )
Returns the arc sine of x in radians. asin() is the complementary function of sin(), which means that a==sin(asin(a)) for every value of a that is within asin()'s range.
Parameters:
x - The argument to process. It can be a scalar or an array.
Return Value:
The arc sine of x in radians. If x is an array, the return value will also be an array.