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