asin
Returns the arcsine of the specified number.
Syntax
asin(x)
Parameters
Parameter |
Type |
Description |
---|---|---|
x |
number |
Numeric value (the value should be from -1 to +1) |
Return
Returns y such that x = sin(y).
Examples
Python
import math
x = 0.5
y = math.asin(x)
NexScript
x = 0.5
y = asin(x)