sinh

Calculates the hyperbolic sine of x.

Special Values
xsinh(x)invalid?
±0.0±0.0no
±∞±∞no
  1. real sinh(real x)
    @safe pure nothrow @nogc
    real
    sinh
    (
    real x
    )
  2. double sinh(double x)
  3. float sinh(float x)

Examples

assert(isIdentical(sinh(0.0), 0.0));
assert(sinh(1.0).approxEqual((E - 1.0 / E) / 2));

Meta

Suggestion Box / Bug Report