std::sinh(std::complex) - cppreference.com (original) (raw)

| | | | | -------------------------------------------------------------- | | ------------- | | template< class T > complex<T> sinh( const complex<T>& z ); | | (since C++11) |

Computes complex hyperbolic sine of a complex value z.

Contents

[edit] Parameters

[edit] Return value

If no errors occur, complex hyperbolic sine of z is returned.

[edit] Error handling and special values

Errors are reported consistent with math_errhandling.

If the implementation supports IEEE floating-point arithmetic,

where cis(y) is cos(y) + i sin(y).

[edit] Notes

Mathematical definition of hyperbolic sine is sinh z = .

Hyperbolic sine is an entire function in the complex plane and has no branch cuts. It is periodic with respect to the imaginary component, with period 2πi.

[edit] Example

Output:

sinh(1.000000,0.000000) = (1.175201,0.000000) (sinh(1) = 1.175201) sinh(0.000000,1.000000) = (0.000000,0.841471) ( sin(1) = 0.841471)

[edit] See also

cosh(std::complex) computes hyperbolic cosine of a complex number (\({\small\cosh{z}}\)cosh(z)) (function template) [edit]
tanh(std::complex) computes hyperbolic tangent of a complex number (\({\small\tanh{z}}\)tanh(z)) (function template) [edit]
asinh(std::complex)(C++11) computes area hyperbolic sine of a complex number (\({\small\operatorname{arsinh}{z}}\)arsinh(z)) (function template) [edit]
sinhsinhfsinhl(C++11)(C++11) computes hyperbolic sine (\({\small\sinh{x}}\)sinh(x)) (function) [edit]
sinh(std::valarray) applies the function std::sinh to each element of valarray (function template) [edit]
C documentation for csinh