blob: 37ba6d9542ba1cbcaaeadcb935973b5121df69b4 (
plain)
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 "floatComplex.h"
#include "division.h"
floatComplex csechs(floatComplex z)
{
floatComplex out;
out = crdivs(FloatComplex(1,0),ccoshs(z));
return out;
}
|