time-to-botec/squiggle/node_modules/@stdlib/math/base/special/acoversin/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

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
--------