blob: 51ea22421b2851f13d92665785cf4b0395013d3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "sec.h"
#include "cos.h"
#include <math.h>
#include "floatComplex.h"
#include "division.h"
floatComplex csecs(floatComplex z)
{
floatComplex out;
out = crdivs(FloatComplex(1,0),ccoss(z));
return out;
}
|