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