Namespaces
Variants
Views
Actions

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 arc hyperbolic sine of a complex value z.

[edit] Parameters

z - complex value

[edit] Return value

Complex arc hyperbolic sine of z

[edit] See also

computes sine of a complex number (sin(z))
(function template) [edit]
computes hyperbolic sine of a complex number (sh(z))
(function template) [edit]
computes arc sine of a complex number (arcsin(z))
(function template) [edit]