summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/elementaryFunctions/Trigonometry/coth/zcotha.c
blob: dcbb2844975477019de2eb780fe33e73f7149fb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "coth.h"
#include <math.h>

void zcotha(doubleComplex* in, int size,doubleComplex* out)
{
	int i = 0;
	for (i=0;i<size;i++)
	{
		out[i] = zcoths(in[i]);
	}
}