std::cosh(std::complex)

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

Computes complex hyperbolic cosine of a complex value z.

[edit] Parameters

z - complex value

[edit] Return value

Complex hyperbolic cosine of z

[edit] See also

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