Programming Reference/Librarys
Question & Answer
Q&A is closed
calculate the complex sine
#include <stdio.h> #include <complex.h> int main( void ) { long double complex zlong=4.2 + I*2.34; double complex zdouble=(double complex)zlong; double result; result = csin(zdouble); printf("csin(%f + I*%f) = %f\n", creal(zdouble), cimag(zdouble), result); return 0; }
csin(4.200000 + I*2.340000) = -4.565996