docs-v2/content/v2.0/reference/flux/functions/math/cosh.md

553 B

title description menu weight
math.cosh() function The math.cosh() function returns the hyperbolic cosine of `x`.
v2_0_ref
name parent
math.cosh Math
301

The math.cosh() function returns the hyperbolic cosine of x.

Output data type: Float

import "math"

math.cosh(x: 1.22)

// Returns 1.8412089502726743

Parameters

x

The value used in the operation.

Data type: Float

Special cases

math.cosh(±0)   // Returns 1
math.cosh(±Inf) // Returns +Inf
math.cosh(NaN)  // Returns NaN