diff options
Diffstat (limited to 'src/elementaryFunctions/atanh')
-rw-r--r-- | src/elementaryFunctions/atanh/catanha.c | 4 | ||||
-rw-r--r-- | src/elementaryFunctions/atanh/datanha.c | 4 | ||||
-rw-r--r-- | src/elementaryFunctions/atanh/satanha.c | 4 | ||||
-rw-r--r-- | src/elementaryFunctions/atanh/zatanha.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/src/elementaryFunctions/atanh/catanha.c b/src/elementaryFunctions/atanh/catanha.c index 6cae472d..d6b1986e 100644 --- a/src/elementaryFunctions/atanh/catanha.c +++ b/src/elementaryFunctions/atanh/catanha.c @@ -5,14 +5,14 @@ ** 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 +** Last update Mon Oct 22 09:56:50 2007 bruno ** ** Copyright INRIA 2006 */ #include "atanh.h" -void catanha(floatComplex* x, floatComplex* y, int size) { +void catanha(floatComplex* x, int size, floatComplex* y) { int i = 0; for (i = 0; i < size; ++i) { y[i] = catanhs(x[i]); diff --git a/src/elementaryFunctions/atanh/datanha.c b/src/elementaryFunctions/atanh/datanha.c index 3c2f62b6..149c6f86 100644 --- a/src/elementaryFunctions/atanh/datanha.c +++ b/src/elementaryFunctions/atanh/datanha.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Thu Dec 7 14:54:56 2006 jofret -** Last update Thu Sep 6 15:12:16 2007 bruno +** Last update Mon Oct 22 09:56:40 2007 bruno ** ** Copyright INRIA 2006 */ #include "atanh.h" -void datanha(double* x, double* y, int size) { +void datanha(double* x, int size, double* y) { int i = 0; for (i = 0; i < size; ++i) { y[i] = datanhs(x[i]); diff --git a/src/elementaryFunctions/atanh/satanha.c b/src/elementaryFunctions/atanh/satanha.c index 7aa3b544..d65f5876 100644 --- a/src/elementaryFunctions/atanh/satanha.c +++ b/src/elementaryFunctions/atanh/satanha.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Thu Dec 7 16:03:27 2006 jofret -** Last update Thu Sep 6 15:10:59 2007 bruno +** Last update Mon Oct 22 09:56:30 2007 bruno ** ** Copyright INRIA 2006 */ #include "atanh.h" -void satanha(float* x, float* y, int size) { +void satanha(float* x, int size, float* y) { int i = 0; for (i = 0; i < size; ++i) { y[i] = satanhs(x[i]); diff --git a/src/elementaryFunctions/atanh/zatanha.c b/src/elementaryFunctions/atanh/zatanha.c index bef76801..659fae61 100644 --- a/src/elementaryFunctions/atanh/zatanha.c +++ b/src/elementaryFunctions/atanh/zatanha.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Thu Dec 7 16:12:02 2006 jofret -** Last update Thu Sep 6 15:09:32 2007 bruno +** Last update Mon Oct 22 09:56:21 2007 bruno ** ** Copyright INRIA 2006 */ #include "atanh.h" -void zatanha(doubleComplex* x, doubleComplex* y, int size) { +void zatanha(doubleComplex* x, int size, doubleComplex* y) { int i = 0; for (i = 0; i < size; ++i) { y[i] = zatanhs(x[i]); |