blob: 351c8ff2aeb4d5f94738a00145f01624411f7f4f (
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 "doubleComplex.h"
#include "division.h"
doubleComplex zcscds(doubleComplex z)
{
doubleComplex out;
out = zrdivs(DoubleComplex(1,0),zsins(z));
return out;
}
|