pub fn asinh(value: f64) -> f64
Expand description
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);