blob: 4e794512a3ba67cecf9f658a2e535897950b54fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "coth.h"
#include <math.h>
void ccotha(floatComplex* in, int size,floatComplex* out)
{
int i = 0;
for (i=0;i<size;i++)
{
out[i] = ccoths(in[i]);
}
return out;
}
|