29 lines
459 B
Plaintext
29 lines
459 B
Plaintext
|
|
{{alias}}( x )
|
|
Computes the inverse coversed sine.
|
|
|
|
The inverse coversed sine is defined as `asin(1-x)`.
|
|
|
|
If `x < 0`, `x > 2`, or `x` is `NaN`, the function returns `NaN`.
|
|
|
|
Parameters
|
|
----------
|
|
x: number
|
|
Input value.
|
|
|
|
Returns
|
|
-------
|
|
y: number
|
|
Inverse coversed sine.
|
|
|
|
Examples
|
|
--------
|
|
> var y = {{alias}}( 1.5 )
|
|
~-0.5236
|
|
> y = {{alias}}( 0.0 )
|
|
~1.5708
|
|
|
|
See Also
|
|
--------
|
|
|