[−][src]Function spinoso_math::asinh
#[must_use]pub fn asinh(value: f64) -> f64
Computes the inverse hyperbolic sine of the given value.
Domain: (-INFINITY, INFINITY)
Codomain: (-INFINITY, INFINITY)
Examples
use spinoso_math as math; assert!((math::asinh(1.0) - 0.881373587019543).abs() < f64::EPSILON);