blob: 93c95b3f2913f5605da2ef4d8b9af0c7079892b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "sech.h"
#include "sec.h"
#include <math.h>
#include "cos.h"
#include "cosh.h"
#include "doubleComplex.h"
#include "division.h"
doubleComplex zsechs(doubleComplex z)
{
doubleComplex out;
out = zrdivs(DoubleComplex(1,0),zcoshs(z));
return out;
}
|