1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include "sech.h" #include "sec.h" #include <math.h> #include "cos.h" #include "cosh.h" #include "doubleComplex.h" #include "division.h" doubleComplex zsechs(doubleComplex z) { doubleComplex out; out = zrdivs(DoubleComplex(1,0),zcoshs(z)); return out; }