summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/atanh/catanha.c
blob: 6cae472d7c0571f8f4ad6a7c8c7a3bec77ccfe7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
**  -*- C -*-
**
** catanha.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Dec  7 14:54:24 2006 jofret
** Last update Thu Sep  6 15:12:44 2007 bruno
**
** Copyright INRIA 2006
*/

#include "atanh.h"

void catanha(floatComplex* x, floatComplex* y, int size) {
  int i = 0;
  for (i = 0; i < size; ++i) {
    y[i] = catanhs(x[i]);
  }
}