blob: 177a9fa4e07b66539296bfec4040d337c684365d (
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 "floatComplex.h"
#include "division.h"
floatComplex ccschs(floatComplex z)
{
floatComplex out;
out = crdivs(FloatComplex(1,0),csinhs(z));
return out;
}
|