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