function template
std::sin
<complex>
template<class T> complex<T> sin (const complex<T>& x);
Return sine of complex
Returns the sine of the complex number
x.
This overloads
cmath's sin function.
Parameters
- x
- Complex value, representing an angle expressed in radians.
Return value
Sine of
x.
See also
- cos
- Return cosine of complex (function template)
- tan
- Return tangent of complex (function template)
- sinh
- Return hyperbolic sine of complex (function template)
- sin (cmath)
- Compute sine (function)