pub fn asinh(x: f64) -> f64
Inverse hyperbolic sine (f64)
Calculates the inverse hyperbolic sine of x. Is defined as sgn(x)*log(|x|+sqrt(x*x+1)).
x
sgn(x)*log(|x|+sqrt(x*x+1))