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

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