1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
{{alias}}( x )
Computes the hyperbolic arccosine of a number.
The domain of `x` is restricted to `[1,+infinity)`. If `x < 1`, the function
will return `NaN`.
Parameters
----------
x: number
Input value.
Returns
-------
out: number
Hyperbolic arccosine (in radians).
Examples
--------
> var v = {{alias}}( 1.0 )
0.0
> v = {{alias}}( 2.0 )
~1.317
> v = {{alias}}( NaN )
NaN
// The function overflows for large `x`:
> v = {{alias}}( 1.0e308 )
Infinity
See Also
--------
|