function template
<complex>
std::sinh
template<class T> complex<T> sinh (const complex<T>& x);
Hyperbolic sine of complex
Returns the hyperbolic sine of the complex number x.
This is the complex version of the sinh function (defined in <cmath>
).
Parameters
- x
- Complex value, representing an angle expressed in radians.
Return value
Hyperbolic sine of x.
See also
- cosh
- Hyperbolic cosine of complex (function template
)
- tanh
- Hyperbolic tangent of complex (function template
)
- sin
- Sine of complex (function template
)
- sinh (cmath)
- Compute hyperbolic sine (function
)