We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tanh - Hyperbolic tangent
float tanh ( float $x )
tanh() returns the hyperbolic tangent of x, defined as sinh(x)/cosh(x).
sinh(x)/cosh(x)
x - The number to process. It can be a scalar or an array.
The hyperbolic tangent of x. If x is an array, then the return value will also be an array.
1.0 and above.