std::tanh(std::complex)

From cppreference.com
< cpp‎ | numeric‎ | complex
Defined in header <complex>
template< class T >
complex<T> tanh( const complex<T>& z );
(since C++11)

Computes complex hyperbolic tangent of a complex value z.

[edit] Parameters

z - complex value

[edit] Return value

Complex hyperbolic tangent of z

[edit] See also

computes hyperbolic sine of a complex number (sh(z))
(function template)
computes hyperbolic cosine of a complex number (ch(z))
(function template)
computes area hyperbolic tangent of a complex number
(function template)
hyperbolic tangent
(function)
applies the function std::tanh to each element of valarray
(function template)
C documentation for ctanh