csin
, csinf
—complex sine#include <complex.h> double complex csin(double complex z); float complex csinf(float complex z);
Description
These functions compute the complex sine of z.
csinf
is identical to csin
, except that it performs
its calculations on floats complex
.
Returns
Portability
csin
and csinf
are ISO C99