blob: af8b3eb2357854e3a30209545cc7dc2b673ce3dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <math.h>
#include "sin.h"
#include "cos.h"
#include "sinh.h"
#include "cosh.h"
#include "csc.h"
#include "floatComplex.h"
#include "division.h"
floatComplex ccscs(floatComplex z)
{
floatComplex out;
out = crdivs(FloatComplex(1,0),csins(z));
return out;
}
|