Function spinoso_math::asinh

source ·
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);