Function libm::asinhf

source ·
pub fn asinhf(x: f32) -> f32
Expand description

Inverse hyperbolic sine (f32)

Calculates the inverse hyperbolic sine of x. Is defined as sgn(x)*log(|x|+sqrt(x*x+1)).