Documentation

tanh

Hyperbolic tangent

Syntax

Y = tanh(X)

Description

Thetanhfunction operates element-wise on arrays. The function's domains and ranges include complex values. All angles are in radians.

Y = tanh(X)returns the hyperbolic tangent of each element ofX.

Examples

collapse all

Graph the hyperbolic tangent function over the domain.

x = -5:0.01:5; plot(x,tanh(x)), gridon

More About

collapse all

Hyperbolic Tangent

The hyperbolic tangent ofzis

tanh ( z ) = sinh ( z ) cosh ( z ) .

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

Introduced before R2006a

Was this topic helpful?