std::acosh(std::complex)
From cppreference.com
Defined in header <complex>
|
||
template< class T > complex<T> acosh( const complex<T>& z ); |
(since C++11) | |
Computes complex arc hyperbolic cosine of a complex value z.
[edit] Parameters
z | - | complex value |
[edit] Return value
Complex arc hyperbolic cosine of z
[edit] See also
computes cosine of a complex number (cos(z)) (function template) | |
computes hyperbolic cosine of a complex number (ch(z)) (function template) | |
(C++11) |
computes arc cosine of a complex number (arccos(z)) (function template) |