Difference between revisions of "cpp/numeric/complex/cos"
From cppreference.com
m (Update links.) |
m (+link to acos(std::complex), cos, and C documentation) |
||
Line 21: | Line 21: | ||
{{dsc inc | cpp/numeric/complex/dsc sin}} | {{dsc inc | cpp/numeric/complex/dsc sin}} | ||
{{dsc inc | cpp/numeric/complex/dsc tan}} | {{dsc inc | cpp/numeric/complex/dsc tan}} | ||
+ | {{dsc inc | cpp/numeric/complex/dsc acos}} | ||
+ | {{dsc inc | cpp/numeric/math/dsc cos}} | ||
+ | {{dsc see c | c/numeric/complex/ccos}} | ||
{{dsc end}} | {{dsc end}} | ||
Revision as of 19:43, 30 May 2014
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
Complex cosine of z
.
See also
computes sine of a complex number (sin(z)) (function template) | |
computes tangent of a complex number (tan(z)) (function template) | |
(C++11) |
computes arc cosine of a complex number (arccos(z)) (function template) |
(C++11)(C++11) |
computes cosine (cos(x)) (function) |
C documentation for ccos
|