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