blob: f3a9b227a3071f61b0ce75d3f00a8c32d8ebf5ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "csch.h"
#include "sinh.h"
#include "sin.h"
#include <math.h>
#include "doubleComplex.h"
#include "division.h"
doubleComplex zcschs(doubleComplex z)
{
doubleComplex out;
out = zrdivs(DoubleComplex(1,0),zsinhs(z));
return out;
}
|