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

#include "cosh.h"

void dcosha(double* x, int size, double* y) {
  int i = 0;
  for (i = 0; i < size; ++i) {
    y[i] = dcoshs(x[i]);
  }
}