summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/elementaryFunctions/Trigonometry/coth/ccoths.c
blob: 564b8e697478ba980dcc01b7b2bb23a2ae2abc00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <math.h>
#include "coth.h"
#include <math.h>
#include "tanh.h"
#include "floatComplex.h"
#include "division.h"

floatComplex ccoths(floatComplex z)
{
	
	floatComplex out;
	out = crdivs(FloatComplex(1,0), ctanhs(z));
	return out;
}