acosh
fn
real acosh(real x) @safe pure nothrow @nogcCalculates the inverse hyperbolic cosine of x.
Mathematically, acosh(x) = log(x + sqrt( x*x - 1))
1..∞,
0..∞
| x, acosh(x) | NaN, NaN | <1, NaN | 1, 0 | +∞,+∞ |
|---|
fn
double acosh(double x) @safe pure nothrow @nogcditto
fn
float acosh(float x) @safe pure nothrow @nogcditto