std::asinh(std::complex)
From cppreference.com
| Defined in header
<complex>
|
||
| template< class T >
complex<T> asinh( const complex<T>& z ); |
(since C++11) | |
Computes complex area hyperbolic sine of a complex value z.
[edit] Parameters
| z | - | complex value |
[edit] Return value
Complex area hyperbolic sine of z
[edit] See also
| (C++11)
|
computes area hyperbolic cosine of a complex number (function template) |
| (C++11)
|
computes area hyperbolic tangent of a complex number (function template) |
| computes hyperbolic sine of a complex number (sh(z)) (function template) |
|
| (C++11)
|
computes the inverse hyperbolic sine (arsinh(x)) (function) |
|
C documentation for casinh
|
|