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

565 B

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

The math.tanh() function returns the hyperbolic tangent of x.

Output data type: Float

import "math"

math.tanh(x: 1.23)

// Returns 0.8425793256589296

Parameters

x

The value used in the operation.

Data type: Float

Special cases

math.tanh(x: ±0)   // Returns ±0
math.tanh(x: ±Inf) // Returns ±1
math.tanh(x: NaN)  // Returns NaN