std::tan(std::complex)
From cppreference.com
Defined in header
<complex>
|
||
template< class T >
complex<T> tan( const complex<T>& z ); |
||
Computes complex tangent of a complex value z
.
[edit] Parameters
z | - | complex value |
[edit] Return value
Complex tangent of z
.
[edit] See also
computes sine of a complex number (sin(z)) (function template) |
|
computes cosine of a complex number (cos(z)) (function template) |
|
(C++11)
|
computes arc tangent of a complex number (arctan(z)) (function template) |
computes tangent (tan(x)) (function) |
|
applies the function std::tan to each element of valarray (function template) |
|
C documentation for ctan
|