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

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

Computes complex hyperbolic cosine of a complex value z.

Contents

[edit] Parameters

[edit] Return value

If no errors occur, complex hyperbolic cosine 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 cosine is cosh z = .

Hyperbolic cosine 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] Examples

Output:

cosh(1.000000,0.000000) = (1.543081,0.000000) (cosh(1) = 1.543081) cosh(0.000000,1.000000) = (0.540302,0.000000) ( cos(1) = 0.540302)

[edit] See also

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