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