Next: csinh
, csinhf
—complex hyperbolic sine, Previous: creal
, crealf
, creall
—real part, Up: Mathematical Complex Functions (complex.h) [Contents][Index]
csin
, csinf
—complex sineSynopsis
#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
These functions return the complex sine value.
Portability
csin
and csinf
are ISO C99