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


