std::cos(std::complex) (3) - Linux Manuals
std::cos(std::complex): std::cos(std::complex)
NAME
std::cos(std::complex) - std::cos(std::complex)
Synopsis
Defined in header <complex>
template< class T >
complex<T> cos( const complex<T>& z );
Computes complex cosine of a complex value z.
Parameters
z - complex value
Return value
If no errors occur, the complex cosine of z is returned.
Errors and special cases are handled as if the operation is implemented by std::cosh(i*z), where i is the imaginary unit.
Notes
The cosine is an entire function on the complex plane, and has no branch cuts.
Mathematical definition of the cosine is cos z =
eiz
+e-iz
2
Example
// Run this code
Output:
See also
sin(std::complex) (function template)
tan(std::complex) (function template)
acos(std::complex) computes arc cosine of a complex number (arccos(z))
(C++11)
cos
cosf
cosl computes cosine (cos(x))
(C++11)
(C++11)
cos(std::valarray) (function template)