summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/atanh/satanha.c
blob: d65f5876d2f122855ec6448a2adfb6d30e7f54e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
**  -*- C -*-
**
** satanha.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Dec  7 16:03:27 2006 jofret
** Last update Mon Oct 22 09:56:30 2007 bruno
**
** Copyright INRIA 2006
*/

#include "atanh.h"

void satanha(float* x, int size, float* y) {
  int i = 0;
  for (i = 0; i < size; ++i) {
    y[i] = satanhs(x[i]);
  }
}