Function spinoso_math::sinh [−][src]
#[must_use]pub fn sinh(value: f64) -> f64
Computes the hyperbolic sine of the given value (expressed in radians).
Domain: (-INFINITY, INFINITY)
Codomain: (-INFINITY, INFINITY)
Examples
use spinoso_math as math; assert_eq!(math::sinh(0.0), 0.0);