math.sinh¶ math.sinh(x) -> number Return the hyperbolic sine of x. Parameters x: any — a real number Returns number — the hyperbolic sine of x, as a float Examples assert(math.sinh(0) == 0.0) assert(math.sinh(1) > 1.0)