std::tan(std::complex) (3) - Linux Manuals
std::tan(std::complex): std::tan(std::complex)
NAME
std::tan(std::complex) - std::tan(std::complex)
Synopsis
Defined in header <complex>
template< class T >
complex<T> tan( const complex<T>& z );
Computes complex tangent of a complex value z.
Parameters
z - complex value
Return value
If no errors occur, the complex tangent of z is returned.
Errors and special cases are handled as if the operation is implemented by -i * std::tanh(i*z), where i is the imaginary unit.
Notes
Tangent is an analytical function on the complex plain and has no branch cuts. It is periodic with respect to the real component, with period πi, and has poles of the first order along the real line, at coordinates (π(1/2 + n), 0). However no common floating-point representation is able to represent π/2 exactly, thus there is no value of the argument for which a pole error occurs.
Mathematical definition of the tangent is tan z =
i(e-iz
-eiz
)
e-iz
+eiz
Example
// Run this code
Output:
See also
sin(std::complex) (function template)
cos(std::complex) (function template)
atan(std::complex) computes arc tangent of a complex number (arctan(z))
(C++11)
tan
tanf
tanl computes tangent (tan(x))
(C++11)
(C++11)
tan(std::valarray) (function template)