csinf(3) - Linux man page
Name
csin, csinf, csinl - complex sine functionSynopsis
#include <complex.h>double complex csin(double complex z);
float complex csinf(float complex z);
long double complex csinl(long double complex z);
Link with -lm.
Description
The complex sine function is defined as:csin(z) = (exp(i * z) - exp(-i * z)) / (2 * i)