summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/acosh/cacosha.c
blob: dd4fa6ba1aaf7877e0865d4b1f9f906c635beccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
**  -*- C -*-
**
** cacosha.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Fri Jan  5 10:23:49 2007 jofret
** Last update Mon Oct 22 09:59:42 2007 bruno
**
** Copyright INRIA 2007
*/

#include "acosh.h"

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